From ae78208aaa78d4ccae6332edc04e53bbad3b0a2d Mon Sep 17 00:00:00 2001 From: azv Date: Fri, 4 Oct 2019 15:35:26 +0300 Subject: [PATCH] Split too long line --- src/GeomAPI/GeomAPI_Ellipse2d.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/GeomAPI/GeomAPI_Ellipse2d.cpp b/src/GeomAPI/GeomAPI_Ellipse2d.cpp index 92c16886f..464d4b1c4 100644 --- a/src/GeomAPI/GeomAPI_Ellipse2d.cpp +++ b/src/GeomAPI/GeomAPI_Ellipse2d.cpp @@ -196,7 +196,8 @@ double GeomAPI_Ellipse2d::distance(const std::shared_ptr& the IntAna2d_AnaIntersection anInter(theEllipse->impl(), IntAna2d_Conic(*MY_ELLIPSE)); Extrema_ExtCC2d* anExtema = new Extrema_ExtCC2d(Geom2dAdaptor_Curve(anEllipse1), Geom2dAdaptor_Curve(anEllipse2)); - double aDistance = extrema(&anInter, anExtema, theEllipse->firstFocus(), thePointOnEllipse, thePointOnMe); + double aDistance = extrema(&anInter, anExtema, theEllipse->firstFocus(), + thePointOnEllipse, thePointOnMe); delete anExtema; return aDistance; } -- 2.39.2