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

Modeling - Add boundary check in BRepFill_Filling to handle empty boundaries #300

This commit is contained in:
dpasukhi 2025-01-28 16:29:56 +00:00
parent d409a3642d
commit 22126df210

View File

@ -563,6 +563,13 @@ void BRepFill_Filling::Build()
myTolAng,
myTolCurv,
myAnisotropie));
if (myBoundary.IsEmpty())
{
myIsDone = Standard_False;
return;
}
TopoDS_Edge CurEdge;
TopoDS_Face CurFace;
Standard_Integer i, j;