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

increase rand factor by factor 10

parent 40515ea6
No related branches found
No related tags found
No related merge requests found
......@@ -124,7 +124,7 @@ PView *GMSH_TriangulatePlugin::execute(PView *v)
// get lc
SBoundingBox3d bbox;
for(unsigned int i = 0; i < points.size(); i++) bbox += points[i]->point();
double lc = norm(SVector3(bbox.max(), bbox.min()));
double lc = 10 * norm(SVector3(bbox.max(), bbox.min()));
// build a point record structure for the divide and conquer algorithm
DocRecord doc(points.size());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment