1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

Application of EnsureToleranceRule to ShapeFix_Shape was fixed.

This commit is contained in:
abk 2012-12-26 20:21:16 +04:00
parent 0f5e173831
commit 9aaa3cc42c

View File

@ -103,10 +103,7 @@ void ShapeFix_Shape::Init(const TopoDS_Shape& shape)
Standard_Boolean ShapeFix_Shape::Perform(const Handle(Message_ProgressIndicator)& theProgress) Standard_Boolean ShapeFix_Shape::Perform(const Handle(Message_ProgressIndicator)& theProgress)
{ {
Standard_Boolean aR = PerformR(theProgress); Standard_Boolean aR = PerformR(theProgress);
if (aR) BRepBuilderAPI_MakeShape::EnsureToleranceRule(myResult);
{
BRepBuilderAPI_MakeShape::EnsureToleranceRule(myResult);
}
return aR; return aR;
} }
@ -173,7 +170,7 @@ Standard_Boolean ShapeFix_Shape::PerformR(const Handle(Message_ProgressIndicator
for ( TopoDS_Iterator anIter(S); anIter.More() && aPSentry.More(); anIter.Next(), aPSentry.Next() ) for ( TopoDS_Iterator anIter(S); anIter.More() && aPSentry.More(); anIter.Next(), aPSentry.Next() )
{ {
myShape = anIter.Value(); myShape = anIter.Value();
if ( Perform(theProgress) ) if ( PerformR(theProgress) )
status = Standard_True; status = Standard_True;
} }
if ( !aPSentry.More() ) if ( !aPSentry.More() )