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

better tolerance for plane

parent 3d4c4dcd
No related branches found
No related tags found
No related merge requests found
......@@ -450,7 +450,7 @@ void GFace::computeMeanPlane()
for(unsigned int i = 2; i < pts.size(); i++){
SVector3 d0i(pts[0], pts[i]);
SVector3 n = crossprod(d01, d0i);
if(norm(n) > 1e-12){
if(norm(n) > 1e-6){
res[0] = n.x(); res[1] = n.y(); res[2] = n.z();
xm = pts[0].x(); ym = pts[0].y(); zm = pts[0].z();
ok = true;
......
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