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

0030348: Shape Healing - ShapeFix_Wire::FixEdgeCurves() throws Standard_OutOfRange exception

Call FixClosed() instead of out-of-range FixConnected() at the last edge.
This commit is contained in:
kgv 2018-11-06 19:42:22 +03:00 committed by bugmaster
parent fb99e177e1
commit 22887d12c4

View File

@ -757,7 +757,14 @@ Standard_Boolean ShapeFix_Wire::FixEdgeCurves()
sbwd->Remove ( i-- ); sbwd->Remove ( i-- );
nb--; nb--;
myStatusEdgeCurves |= ShapeExtend::EncodeStatus ( ShapeExtend_DONE5 ); myStatusEdgeCurves |= ShapeExtend::EncodeStatus ( ShapeExtend_DONE5 );
FixConnected (i + 1, Precision()); if (i == nb)
{
FixClosed (Precision());
}
else
{
FixConnected (i + 1, Precision());
}
} }
myStatusEdgeCurves |= ShapeExtend::EncodeStatus ( ShapeExtend_FAIL5 ); myStatusEdgeCurves |= ShapeExtend::EncodeStatus ( ShapeExtend_FAIL5 );
} }