From de6ecd3af10333450971aa8a61c63e2790678e71 Mon Sep 17 00:00:00 2001 From: ika Date: Wed, 5 Jun 2024 17:19:44 +0100 Subject: [PATCH] 0030752: Canonical recognition - converts bspline curve into huge ellipse Add additional check for very thin result ellipse during conversion curve to ellipse. --- .../GeomConvert_CurveToAnaCurve.cxx | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/src/GeomConvert/GeomConvert_CurveToAnaCurve.cxx b/src/GeomConvert/GeomConvert_CurveToAnaCurve.cxx index 3038e88dfa..85e4091ce6 100644 --- a/src/GeomConvert/GeomConvert_CurveToAnaCurve.cxx +++ b/src/GeomConvert/GeomConvert_CurveToAnaCurve.cxx @@ -16,6 +16,7 @@ #include +#include #include #include #include @@ -24,6 +25,7 @@ #include #include #include +#include #include #include #include @@ -622,6 +624,33 @@ if (Q2 > 0 && Q1*Q3 < 0) { cl = ElCLib::InPeriod(cl, cm, cm + PI2); res = gell; + + // reverse test for 20 points for cases of very thin and long ellipse (#30752) + if ((1 - anEllipse.Eccentricity()) < tol) + { + GeomAdaptor_Curve anAdpt(c3d); + Extrema_ExtPC aProj; + aProj.Initialize(anAdpt, c1, c2); + Standard_Real aTol2 = tol * tol; + Standard_Real aDelta = (cl - cf) / 20; + for (int aPntId = 1; aPntId <= 20; aPntId++) + { + gp_Pnt anEllPnt = res->Value(cf + aPntId * aDelta); + aProj.Perform(anEllPnt); + if (aProj.IsDone()) + { + Standard_Real anExtDist = aProj.SquareDistance(1); + for (int anExtInd = 2; anExtInd <= aProj.NbExt(); anExtInd++) + { + Standard_Real aDist = aProj.SquareDistance(anExtInd); + if (anExtDist < aDist) + aDist = anExtDist; + } + if (anExtDist > aTol2) + return NULL; // not done + } + } + } } } /*