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:
parent
fb99e177e1
commit
22887d12c4
@ -757,8 +757,15 @@ Standard_Boolean ShapeFix_Wire::FixEdgeCurves()
|
||||
sbwd->Remove ( i-- );
|
||||
nb--;
|
||||
myStatusEdgeCurves |= ShapeExtend::EncodeStatus ( ShapeExtend_DONE5 );
|
||||
if (i == nb)
|
||||
{
|
||||
FixClosed (Precision());
|
||||
}
|
||||
else
|
||||
{
|
||||
FixConnected (i + 1, Precision());
|
||||
}
|
||||
}
|
||||
myStatusEdgeCurves |= ShapeExtend::EncodeStatus ( ShapeExtend_FAIL5 );
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user