diff --git a/src/IntPatch/IntPatch_Intersection.cxx b/src/IntPatch/IntPatch_Intersection.cxx index 4bf83fd567..79ec38baf2 100644 --- a/src/IntPatch/IntPatch_Intersection.cxx +++ b/src/IntPatch/IntPatch_Intersection.cxx @@ -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: {