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

Modeling - Enhance intersection handling for closed curves in IntPatch_Intersection #298

This commit is contained in:
dpasukhi 2025-01-28 12:21:26 +00:00
parent cde7baba0d
commit 8caf5157dd

View File

@ -195,8 +195,11 @@ void IntPatch_Intersection::Perform(const Handle(Adaptor3d_Surface)& S1,
aProjectedCurve.FirstParameter(),
aProjectedCurve.LastParameter());
Geom2dInt_GInter Intersector(AC, Precision::Confusion(), Precision::Confusion());
if (Intersector.IsDone() && Intersector.IsEmpty())
if (Intersector.IsDone()
&& (Intersector.IsEmpty() || (AC.IsClosed() && Intersector.NbPoints() == 1)))
{
break;
}
}
Standard_FALLTHROUGH
default: {