From 54a7ed03b82204da58a844ba451bb93cdff08e29 Mon Sep 17 00:00:00 2001 From: eap Date: Thu, 20 Dec 2012 11:20:35 +0000 Subject: [PATCH] - if ( myProjFace.IsDone() && myProjFace.LowerDistance() <= myTol ); + if ( myProjFace.IsDone() && myProjFace.LowerDistance() <= myTol ) --- src/Controls/SMESH_Controls.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controls/SMESH_Controls.cxx b/src/Controls/SMESH_Controls.cxx index 6f1f88f82..2b8d3c695 100644 --- a/src/Controls/SMESH_Controls.cxx +++ b/src/Controls/SMESH_Controls.cxx @@ -3830,7 +3830,7 @@ bool ElementsOnShape::TClassifier::isOutOfSolid (const gp_Pnt& p) bool ElementsOnShape::TClassifier::isOutOfFace (const gp_Pnt& p) { myProjFace.Perform( p ); - if ( myProjFace.IsDone() && myProjFace.LowerDistance() <= myTol ); + if ( myProjFace.IsDone() && myProjFace.LowerDistance() <= myTol ) { // check relatively to the face Quantity_Parameter u, v; -- 2.39.2