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

0028558: Test bugs modalg_6 bug26150_17 is failed with FPE switched on

Avoid division by zero in the method BRepFill_CompatibleWires::SameNumberByACR.
This commit is contained in:
jgv 2017-03-15 16:36:47 +03:00 committed by bugmaster
parent c58055adeb
commit 176a795920

View File

@ -1402,7 +1402,9 @@ void BRepFill_CompatibleWires::SameNumberByACR(const Standard_Boolean report)
// insertion of cuts in each wire
for (i=1; i<=nbSects; i++) {
const TopoDS_Wire& oldwire = TopoDS::Wire(myWork(i));
Standard_Real tol = Precision::Confusion() / WireLen(i);
Standard_Real tol = Precision::Confusion();
if (WireLen(i) > gp::Resolution())
tol /= WireLen(i);
TopoDS_Wire newwire = BRepFill::InsertACR(oldwire, dec3, tol);
BRepTools_WireExplorer anExp1,anExp2;
anExp1.Init(oldwire);