mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Modeling - Degenerated curve on offset #301
Skip degenerated curves in BRepOffset_Tool::TryProject to improve robustness
This commit is contained in:
parent
22126df210
commit
2889518f7a
@ -1899,9 +1899,9 @@ Standard_Boolean BRepOffset_Tool::TryProject(const TopoDS_Face& F1,
|
|||||||
{
|
{
|
||||||
BRepLib::BuildCurve3d(CurE, BRep_Tool::Tolerance(CurE));
|
BRepLib::BuildCurve3d(CurE, BRep_Tool::Tolerance(CurE));
|
||||||
C = BRep_Tool::Curve(CurE, L, f, l);
|
C = BRep_Tool::Curve(CurE, L, f, l);
|
||||||
if (C.IsNull())
|
if (C.IsNull()) // not 3d curve, can be degenerated, need to skip
|
||||||
{
|
{
|
||||||
return Standard_False;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
C = new Geom_TrimmedCurve(C, f, l);
|
C = new Geom_TrimmedCurve(C, f, l);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user