From: azv Date: Fri, 4 Oct 2019 12:35:26 +0000 (+0300) Subject: Split too long line X-Git-Tag: V9_4_0a2~4^2~10 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=ae78208aaa78d4ccae6332edc04e53bbad3b0a2d;p=modules%2Fshaper.git Split too long line --- 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; }