- if ( myProjFace.IsDone() && myProjFace.LowerDistance() <= myTol );

+  if ( myProjFace.IsDone() && myProjFace.LowerDistance() <= myTol )
This commit is contained in:
eap 2012-12-20 11:20:35 +00:00
parent 0115246c96
commit 54a7ed03b8

View File

@ -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;