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

Modeling - Add warning for incomplete wire detection in WireFromList #299

This commit is contained in:
dpasukhi 2025-01-28 15:49:11 +00:00
parent 8caf5157dd
commit d409a3642d

View File

@ -119,6 +119,12 @@ static TopoDS_Wire WireFromList(TopTools_ListOfShape& Edges)
break;
}
}
if (!itl.More())
{
Message::SendWarning() << "Warning: WireFromList: can't find the next edge. The wire is not "
"complete, some edges are lost.";
break;
}
BB.Add(aWire, anEdge);
Edges.Remove(itl);
}