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

Do not rebuild wire if there are no necessary changes

This commit is contained in:
jfa 2023-04-24 16:45:03 +01:00
parent d1c95bea02
commit 2261172c3b

View File

@ -273,18 +273,26 @@ BRepLib_MakeFace::BRepLib_MakeFace(const TopoDS_Wire& W,
aB.MakeWire (aW); aB.MakeWire (aW);
TopoDS_Wire aWForw = W; TopoDS_Wire aWForw = W;
Standard_Boolean hasDegenerated = Standard_False;
aWForw.Orientation (TopAbs_FORWARD); aWForw.Orientation (TopAbs_FORWARD);
TopoDS_Iterator anIter (aWForw); TopoDS_Iterator anIter (aWForw);
for (; anIter.More(); anIter.Next()) for (; anIter.More(); anIter.Next())
{ {
const TopoDS_Edge& aE = TopoDS::Edge (anIter.Value()); const TopoDS_Edge& aE = TopoDS::Edge (anIter.Value());
if (!BRep_Tool::Degenerated (aE)) if (BRep_Tool::Degenerated (aE))
hasDegenerated = Standard_True;
else
aB.Add (aW, aE); aB.Add (aW, aE);
} }
aW.Orientation (W.Orientation()); // return to original orient if (hasDegenerated) {
aW.Closed (W.Closed()); aW.Orientation (W.Orientation()); // return to original orient
aW.Closed (W.Closed());
}
else {
aW = W;
}
} }
else else
{ {