From a78bf9c93f79186722b6358a3f32fc8e14d2864f Mon Sep 17 00:00:00 2001 From: Gaetan Bricteux <gaetan.bricteux@uclouvain.be> Date: Fri, 25 Nov 2011 16:02:32 +0000 Subject: [PATCH] fix --- Geo/MEdge.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Geo/MEdge.cpp b/Geo/MEdge.cpp index 18a83bb5a7..15e235d7c9 100644 --- a/Geo/MEdge.cpp +++ b/Geo/MEdge.cpp @@ -25,7 +25,7 @@ bool MEdge::isInside(MVertex *v) const if(x < x0 - tol || x > x1 + tol || y < std::min(y0, y1) - tol || y > std::max(y0, y1) + tol || z < std::min(z0, z1) - tol || z > std::max(z0, z1) + tol) - ;return false; + return false; if(fabs(x1 - x0) > tol){ double tx = (x - x0) / (x1 - x0); if(fabs(y1 - y0) > tol){ -- GitLab