From: azv Date: Wed, 18 Sep 2019 05:26:08 +0000 (+0300) Subject: Fix too long lines X-Git-Tag: V9_4_0a2~4^2~85 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=e0c9b04444cba3a63a280b726e768f3e8986e1be;p=modules%2Fshaper.git Fix too long lines --- diff --git a/src/SketchAPI/SketchAPI_Ellipse.cpp b/src/SketchAPI/SketchAPI_Ellipse.cpp index b87dc52cb..6bcd6c0dc 100644 --- a/src/SketchAPI/SketchAPI_Ellipse.cpp +++ b/src/SketchAPI/SketchAPI_Ellipse.cpp @@ -275,28 +275,30 @@ std::list > SketchAPI_Ellipse::construct createPoint(aSketch, anEllipse, SketchPlugin_Ellipse::SECOND_FOCUS_ID(), secondFocus)); } if (!majorAxisStart.empty()) { - anEntities.push_back( - createPoint(aSketch, anEllipse, SketchPlugin_Ellipse::MAJOR_AXIS_START_ID(), majorAxisStart)); + anEntities.push_back(createPoint(aSketch, anEllipse, + SketchPlugin_Ellipse::MAJOR_AXIS_START_ID(), majorAxisStart)); } if (!majorAxisEnd.empty()) { - anEntities.push_back( - createPoint(aSketch, anEllipse, SketchPlugin_Ellipse::MAJOR_AXIS_END_ID(), majorAxisEnd)); + anEntities.push_back(createPoint(aSketch, anEllipse, + SketchPlugin_Ellipse::MAJOR_AXIS_END_ID(), majorAxisEnd)); } if (!minorAxisStart.empty()) { - anEntities.push_back( - createPoint(aSketch, anEllipse, SketchPlugin_Ellipse::MINOR_AXIS_START_ID(), minorAxisStart)); + anEntities.push_back(createPoint(aSketch, anEllipse, + SketchPlugin_Ellipse::MINOR_AXIS_START_ID(), minorAxisStart)); } if (!minorAxisEnd.empty()) { - anEntities.push_back( - createPoint(aSketch, anEllipse, SketchPlugin_Ellipse::MINOR_AXIS_END_ID(), minorAxisEnd)); + anEntities.push_back(createPoint(aSketch, anEllipse, + SketchPlugin_Ellipse::MINOR_AXIS_END_ID(), minorAxisEnd)); } if (!majorAxis.empty()) { - anEntities.push_back(createAxis(aSketch, anEllipse, SketchPlugin_Ellipse::MAJOR_AXIS_START_ID(), - SketchPlugin_Ellipse::MAJOR_AXIS_END_ID(), majorAxis)); + anEntities.push_back( + createAxis(aSketch, anEllipse, SketchPlugin_Ellipse::MAJOR_AXIS_START_ID(), + SketchPlugin_Ellipse::MAJOR_AXIS_END_ID(), majorAxis)); } if (!minorAxis.empty()) { - anEntities.push_back(createAxis(aSketch, anEllipse, SketchPlugin_Ellipse::MINOR_AXIS_START_ID(), - SketchPlugin_Ellipse::MINOR_AXIS_END_ID(), minorAxis)); + anEntities.push_back( + createAxis(aSketch, anEllipse, SketchPlugin_Ellipse::MINOR_AXIS_START_ID(), + SketchPlugin_Ellipse::MINOR_AXIS_END_ID(), minorAxis)); } return SketchAPI_SketchEntity::wrap(anEntities);