From e0c9b04444cba3a63a280b726e768f3e8986e1be Mon Sep 17 00:00:00 2001 From: azv Date: Wed, 18 Sep 2019 08:26:08 +0300 Subject: [PATCH] Fix too long lines --- src/SketchAPI/SketchAPI_Ellipse.cpp | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) 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); -- 2.39.2