Skip to content
Snippets Groups Projects
Commit 5cd4e9f2 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

adapt verbosity test to new default
parent efb43bf9
No related branches found
No related tags found
No related merge requests found
// $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);
......
// $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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment