1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

OCC22322 Improvement extrema Additional integration

This commit is contained in:
ABV 2011-05-20 13:40:08 +00:00 committed by bugmaster
parent 6aeb8ed1a8
commit bdde571531

View File

@ -212,7 +212,7 @@ Standard_Boolean BRepExtrema_DistShapeShape::Perform()
BRepClass3d_SolidClassifier Classi(myShape1);
const Standard_Integer nbv2 = myMapV2.Extent();
Standard_Integer nbv1 = 0;
do
while ( (nbv1<nbv2) && (!myInnerSol) )
{
nbv1++;
V = TopoDS::Vertex(myMapV2(nbv1));
@ -228,7 +228,6 @@ Standard_Boolean BRepExtrema_DistShapeShape::Perform()
mySolutionsShape2.Append(Sol);
}
}
while ( (nbv1<nbv2) && (!myInnerSol) );
}
const TopAbs_ShapeEnum Type2 = myShape2.ShapeType();
@ -237,7 +236,7 @@ Standard_Boolean BRepExtrema_DistShapeShape::Perform()
BRepClass3d_SolidClassifier Classi(myShape2);
const Standard_Integer nbv1 = myMapV1.Extent();
Standard_Integer nbv2 = 0;
do
while ( (nbv2<nbv1) && (!myInnerSol) )
{
nbv2++;
V = TopoDS::Vertex(myMapV1(nbv2));
@ -252,7 +251,6 @@ Standard_Boolean BRepExtrema_DistShapeShape::Perform()
mySolutionsShape2.Append(Sol);
}
}
while ( (nbv2<nbv1) && (!myInnerSol) );
}
if (!myInnerSol)