Salome HOME
updated copyright message
[modules/shaper.git] / src / SketchAPI / SketchAPI_Circle.h
index 99e0aefc1cda80d628bd9c3191f34c1bdf5ebce5..dcc58c7153b8aadcfc5a718f10feebd0f4909b74 100644 (file)
@@ -1,8 +1,21 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
-
-// File:        SketchAPI_Circle.h
-// Created:     09 June 2016
-// Author:      Dmitry Bobylev
+// Copyright (C) 2014-2023  CEA, EDF
+//
+// 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
+//
 
 #ifndef SketchAPI_Circle_H_
 #define SketchAPI_Circle_H_
@@ -37,20 +50,6 @@ public:
                    const std::shared_ptr<GeomAPI_Pnt2d>& theCenter,
                    double theRadius);
 
-  /// Constructor with values.
-  SKETCHAPI_EXPORT
-  SketchAPI_Circle(const std::shared_ptr<ModelAPI_Feature>& theFeature,
-                   double theX1, double theY1,
-                   double theX2, double theY2,
-                   double theX3, double theY3);
-
-  /// Constructor with values.
-  SKETCHAPI_EXPORT
-  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);
-
   /// Constructor with values.
   SKETCHAPI_EXPORT
   SketchAPI_Circle(const std::shared_ptr<ModelAPI_Feature>& theFeature,
@@ -59,25 +58,17 @@ public:
   /// Constructor with values.
   SKETCHAPI_EXPORT
   SketchAPI_Circle(const std::shared_ptr<ModelAPI_Feature>& theFeature,
-                   const std::string& theExternalName);
+                   const std::wstring& theExternalName);
 
   /// Destructor.
   SKETCHAPI_EXPORT
   virtual ~SketchAPI_Circle();
 
-  INTERFACE_7(SketchPlugin_Circle::ID(),
-              circleType, SketchPlugin_Circle::CIRCLE_TYPE(),
-              ModelAPI_AttributeString, /** Circle type */,
+  INTERFACE_3(SketchPlugin_Circle::ID(),
               center, SketchPlugin_Circle::CENTER_ID(),
               GeomDataAPI_Point2D, /** Center point */,
               radius, SketchPlugin_Circle::RADIUS_ID(),
               ModelAPI_AttributeDouble, /** Radius */,
-              firstPoint, SketchPlugin_Circle::FIRST_POINT_ID(),
-              GeomDataAPI_Point2D, /** First point */,
-              secondPoint, SketchPlugin_Circle::SECOND_POINT_ID(),
-              GeomDataAPI_Point2D, /** Second point */,
-              thirdPoint, SketchPlugin_Circle::THIRD_POINT_ID(),
-              GeomDataAPI_Point2D, /** Third point */,
               external, SketchPlugin_Circle::EXTERNAL_ID(),
               ModelAPI_AttributeSelection, /** External */)
 
@@ -89,25 +80,13 @@ public:
   SKETCHAPI_EXPORT
   void setByCenterAndRadius(const std::shared_ptr<GeomAPI_Pnt2d>& theCenter, double theRadius);
 
-  /// Set by three points.
-  SKETCHAPI_EXPORT
-  void setByThreePoints(double theX1, double theY1,
-                        double theX2, double theY2,
-                        double theX3, double theY3);
-
-  /// Set by three points.
-  SKETCHAPI_EXPORT
-  void setByThreePoints(const std::shared_ptr<GeomAPI_Pnt2d>& thePoint1,
-                        const std::shared_ptr<GeomAPI_Pnt2d>& thePoint2,
-                        const std::shared_ptr<GeomAPI_Pnt2d>& thePoint3);
-
   /// Set by external.
   SKETCHAPI_EXPORT
   void setByExternal(const ModelHighAPI_Selection& theExternal);
 
   /// Set by external name.
   SKETCHAPI_EXPORT
-  void setByExternalName(const std::string& theExternalName);
+  void setByExternalName(const std::wstring& theExternalName);
 
   /// Set center.
   SKETCHAPI_EXPORT
@@ -121,30 +100,6 @@ public:
   SKETCHAPI_EXPORT
   void setRadius(double theRadius);
 
-  /// Set first point.
-  SKETCHAPI_EXPORT
-  void setFirstPoint(double theX, double theY);
-
-  /// Set first point.
-  SKETCHAPI_EXPORT
-  void setFirstPoint(const std::shared_ptr<GeomAPI_Pnt2d>& thePoint);
-
-  /// Set second point.
-  SKETCHAPI_EXPORT
-  void setSecondPoint(double theX, double theY);
-
-  /// Set second point.
-  SKETCHAPI_EXPORT
-  void setSecondPoint(const std::shared_ptr<GeomAPI_Pnt2d>& thePoint);
-
-  /// Set third point.
-  SKETCHAPI_EXPORT
-  void setThirdPoint(double theX, double theY);
-
-  /// Set third point.
-  SKETCHAPI_EXPORT
-  void setThirdPoint(const std::shared_ptr<GeomAPI_Pnt2d>& thePoint);
-
   /// Dump wrapped feature
   SKETCHAPI_EXPORT
   virtual void dump(ModelHighAPI_Dumper& theDumper) const;