Salome HOME
testHaveNamingSubshapes: Do not create a group if there is no objects of specified...
[modules/shaper.git] / src / SketchAPI / SketchAPI_Circle.cpp
index d8a07f13b787bcf4e9948b1b901221b2e00558ab..8085f6603f9b01fa0f726af5c6ffb16610f99f43 100644 (file)
@@ -1,14 +1,29 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
-
-// File:        SketchAPI_Circle.cpp
-// Created:     09 June 2016
-// Author:      Dmitry Bobylev
+// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// See http://www.salome-platform.org/ or
+// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+//
 
 #include "SketchAPI_Circle.h"
 
 #include <GeomAPI_Pnt2d.h>
 
 #include <ModelHighAPI_Double.h>
+#include <ModelHighAPI_Dumper.h>
 #include <ModelHighAPI_Selection.h>
 #include <ModelHighAPI_Tools.h>
 
@@ -42,30 +57,6 @@ SketchAPI_Circle::SketchAPI_Circle(const std::shared_ptr<ModelAPI_Feature>& theF
   }
 }
 
-//==================================================================================================
-SketchAPI_Circle::SketchAPI_Circle(const std::shared_ptr<ModelAPI_Feature>& theFeature,
-                                   double theX1, double theY1,
-                                   double theX2, double theY2,
-                                   double theX3, double theY3)
-: SketchAPI_SketchEntity(theFeature)
-{
-  if (initialize()) {
-    setByThreePoints(theX1, theY1, theX2, theY2, theX3, theY3);
-  }
-}
-
-//==================================================================================================
-SketchAPI_Circle::SketchAPI_Circle(const std::shared_ptr<ModelAPI_Feature>& theFeature,
-                                   const std::shared_ptr<GeomAPI_Pnt2d>& thePoint1,
-                                   const std::shared_ptr<GeomAPI_Pnt2d>& thePoint2,
-                                   const std::shared_ptr<GeomAPI_Pnt2d>& thePoint3)
-: SketchAPI_SketchEntity(theFeature)
-{
-  if (initialize()) {
-    setByThreePoints(thePoint1, thePoint2, thePoint3);
-  }
-}
-
 //==================================================================================================
 SketchAPI_Circle::SketchAPI_Circle(const std::shared_ptr<ModelAPI_Feature>& theFeature,
                                    const ModelHighAPI_Selection& theExternal)
@@ -95,7 +86,6 @@ SketchAPI_Circle::~SketchAPI_Circle()
 //==================================================================================================
 void SketchAPI_Circle::setByCenterAndRadius(double theCenterX, double theCenterY, double theRadius)
 {
-  fillAttribute(SketchPlugin_Circle::CIRCLE_TYPE_CENTER_AND_RADIUS(), mycircleType);
   fillAttribute(center(), theCenterX, theCenterY);
   fillAttribute(theRadius, myradius);
 
@@ -106,39 +96,12 @@ void SketchAPI_Circle::setByCenterAndRadius(double theCenterX, double theCenterY
 void SketchAPI_Circle::setByCenterAndRadius(const std::shared_ptr<GeomAPI_Pnt2d>& theCenter,
                                             double theRadius)
 {
-  fillAttribute(SketchPlugin_Circle::CIRCLE_TYPE_CENTER_AND_RADIUS(), mycircleType);
   fillAttribute(theCenter, mycenter);
   fillAttribute(theRadius, myradius);
 
   execute();
 }
 
-//==================================================================================================
-void SketchAPI_Circle::setByThreePoints(double theX1, double theY1,
-                                        double theX2, double theY2,
-                                        double theX3, double theY3)
-{
-  fillAttribute(SketchPlugin_Circle::CIRCLE_TYPE_THREE_POINTS(), mycircleType);
-  fillAttribute(firstPoint(), theX1, theY1);
-  fillAttribute(secondPoint(), theX2, theY2);
-  fillAttribute(thirdPoint(), theX3, theY3);
-
-  execute();
-}
-
-//==================================================================================================
-void SketchAPI_Circle::setByThreePoints(const std::shared_ptr<GeomAPI_Pnt2d>& thePoint1,
-                                        const std::shared_ptr<GeomAPI_Pnt2d>& thePoint2,
-                                        const std::shared_ptr<GeomAPI_Pnt2d>& thePoint3)
-{
-  fillAttribute(SketchPlugin_Circle::CIRCLE_TYPE_THREE_POINTS(), mycircleType);
-  fillAttribute(thePoint1, myfirstPoint);
-  fillAttribute(thePoint2, mysecondPoint);
-  fillAttribute(thePoint3, mythirdPoint);
-
-  execute();
-}
-
 //==================================================================================================
 void SketchAPI_Circle::setByExternal(const ModelHighAPI_Selection & theExternal)
 {
@@ -158,7 +121,6 @@ void SketchAPI_Circle::setByExternalName(const std::string & theExternalName)
 //==================================================================================================
 void SketchAPI_Circle::setCenter(double theX, double theY)
 {
-  fillAttribute(SketchPlugin_Circle::CIRCLE_TYPE_CENTER_AND_RADIUS(), mycircleType);
   fillAttribute(center(), theX, theY);
 
   execute();
@@ -167,7 +129,6 @@ void SketchAPI_Circle::setCenter(double theX, double theY)
 //==================================================================================================
 void SketchAPI_Circle::setCenter(const std::shared_ptr<GeomAPI_Pnt2d> & theCenter)
 {
-  fillAttribute(SketchPlugin_Circle::CIRCLE_TYPE_CENTER_AND_RADIUS(), mycircleType);
   fillAttribute(theCenter, mycenter);
 
   execute();
@@ -176,62 +137,29 @@ void SketchAPI_Circle::setCenter(const std::shared_ptr<GeomAPI_Pnt2d> & theCente
 //==================================================================================================
 void SketchAPI_Circle::setRadius(double theRadius)
 {
-  fillAttribute(SketchPlugin_Circle::CIRCLE_TYPE_CENTER_AND_RADIUS(), mycircleType);
   fillAttribute(ModelHighAPI_Double(theRadius), myradius);
 
   execute();
 }
 
 //==================================================================================================
-void SketchAPI_Circle::setFirstPoint(double theX, double theY)
-{
-  fillAttribute(SketchPlugin_Circle::CIRCLE_TYPE_THREE_POINTS(), mycircleType);
-  fillAttribute(firstPoint(), theX, theY);
-
-  execute();
-}
-
-//==================================================================================================
-void SketchAPI_Circle::setFirstPoint(const std::shared_ptr<GeomAPI_Pnt2d>& thePoint)
-{
-  fillAttribute(SketchPlugin_Circle::CIRCLE_TYPE_THREE_POINTS(), mycircleType);
-  fillAttribute(thePoint, myfirstPoint);
-
-  execute();
-}
-
-//==================================================================================================
-void SketchAPI_Circle::setSecondPoint(double theX, double theY)
-{
-  fillAttribute(SketchPlugin_Circle::CIRCLE_TYPE_THREE_POINTS(), mycircleType);
-  fillAttribute(secondPoint(), theX, theY);
-
-  execute();
-}
-
-//==================================================================================================
-void SketchAPI_Circle::setSecondPoint(const std::shared_ptr<GeomAPI_Pnt2d>& thePoint)
+void SketchAPI_Circle::dump(ModelHighAPI_Dumper& theDumper) const
 {
-  fillAttribute(SketchPlugin_Circle::CIRCLE_TYPE_THREE_POINTS(), mycircleType);
-  fillAttribute(thePoint, mysecondPoint);
-
-  execute();
-}
+  if (isCopy())
+    return; // no need to dump copied feature
 
-//==================================================================================================
-void SketchAPI_Circle::setThirdPoint(double theX, double theY)
-{
-  fillAttribute(SketchPlugin_Circle::CIRCLE_TYPE_THREE_POINTS(), mycircleType);
-  fillAttribute(thirdPoint(), theX, theY);
+  FeaturePtr aBase = feature();
+  const std::string& aSketchName = theDumper.parentName(aBase);
 
-  execute();
-}
-
-//==================================================================================================
-void SketchAPI_Circle::setThirdPoint(const std::shared_ptr<GeomAPI_Pnt2d>& thePoint)
-{
-  fillAttribute(SketchPlugin_Circle::CIRCLE_TYPE_THREE_POINTS(), mycircleType);
-  fillAttribute(thePoint, mythirdPoint);
-
-  execute();
+  AttributeSelectionPtr anExternal = aBase->selection(SketchPlugin_SketchEntity::EXTERNAL_ID());
+  if (anExternal->context()) {
+    // circle is external
+    theDumper << aBase << " = " << aSketchName << ".addCircle(" << anExternal << ")" << std::endl;
+  } else {
+    // circle given by center and radius
+    theDumper << aBase << " = " << aSketchName << ".addCircle("
+              << center() << ", " << radius() << ")" << std::endl;
+  }
+  // dump "auxiliary" flag if necessary
+  SketchAPI_SketchEntity::dump(theDumper);
 }