From 5cd4e9f276836260d139ac5e5c62c7df0a03cd0b Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Mon, 17 May 2004 21:28:02 +0000 Subject: [PATCH] adapt verbosity test to new default --- Mesh/2D_Mesh_Triangle.cpp | 6 +++--- Plugin/Triangulate.cpp | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Mesh/2D_Mesh_Triangle.cpp b/Mesh/2D_Mesh_Triangle.cpp index f7606e2d2d..f71f0a209d 100644 --- a/Mesh/2D_Mesh_Triangle.cpp +++ b/Mesh/2D_Mesh_Triangle.cpp @@ -1,4 +1,4 @@ -// $Id: 2D_Mesh_Triangle.cpp,v 1.6 2004-02-07 01:40:20 geuzaine Exp $ +// $Id: 2D_Mesh_Triangle.cpp,v 1.7 2004-05-17 21:28:02 geuzaine Exp $ // // Copyright (C) 1997-2004 C. Geuzaine, J.-F. Remacle // @@ -183,7 +183,7 @@ int Mesh_Shewchuk(Surface * s) // triangulate the points with minimum angle > 20 deg, with no boundary breaking strcpy(opts, "pqzY"); - if(CTX.verbosity < 3) + if(CTX.verbosity < 4) strcat(opts, "Q"); triangulate(opts, &in, &mid, NULL); @@ -230,7 +230,7 @@ int Mesh_Shewchuk(Surface * s) //strcpy(opts, "praqzBPY"); strcpy(opts, CTX.mesh.triangle_options); - if(CTX.verbosity < 3) + if(CTX.verbosity < 4) strcat(opts, "Q"); triangulate(opts, &mid, &out, NULL); diff --git a/Plugin/Triangulate.cpp b/Plugin/Triangulate.cpp index 4b2f36b5a9..54076d360f 100644 --- a/Plugin/Triangulate.cpp +++ b/Plugin/Triangulate.cpp @@ -1,4 +1,4 @@ -// $Id: Triangulate.cpp,v 1.21 2004-05-16 20:04:43 geuzaine Exp $ +// $Id: Triangulate.cpp,v 1.22 2004-05-17 21:28:02 geuzaine Exp $ // // Copyright (C) 1997-2004 C. Geuzaine, J.-F. Remacle // @@ -170,7 +170,7 @@ void Triangulate(Post_View * vin, Post_View * vout) out.edgemarkerlist = NULL; char opts[128] = "z"; - if(CTX.verbosity < 3) + if(CTX.verbosity < 4) strcat(opts, "Q"); triangulate(opts, &in, &out, NULL); -- GitLab