Salome HOME
Split too long line
authorazv <azv@opencascade.com>
Fri, 4 Oct 2019 12:35:26 +0000 (15:35 +0300)
committerazv <azv@opencascade.com>
Fri, 4 Oct 2019 12:35:26 +0000 (15:35 +0300)
src/GeomAPI/GeomAPI_Ellipse2d.cpp

index 92c16886f728d03d4c047c7c38fd8f8c9ae2817d..464d4b1c4fad884f1741691421a85490039287a8 100644 (file)
@@ -196,7 +196,8 @@ double GeomAPI_Ellipse2d::distance(const std::shared_ptr<GeomAPI_Ellipse2d>& the
   IntAna2d_AnaIntersection anInter(theEllipse->impl<gp_Elips2d>(), 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;
 }