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.FirstParameter(),
aProjectedCurve.LastParameter()); aProjectedCurve.LastParameter());
Geom2dInt_GInter Intersector(AC, Precision::Confusion(), Precision::Confusion()); Geom2dInt_GInter Intersector(AC, Precision::Confusion(), Precision::Confusion());
if (Intersector.IsDone() && Intersector.IsEmpty()) if (Intersector.IsDone()
&& (Intersector.IsEmpty() || (AC.IsClosed() && Intersector.NbPoints() == 1)))
{
break; break;
}
} }
Standard_FALLTHROUGH Standard_FALLTHROUGH
default: { default: {