]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchAPI/SketchAPI_MacroCircle.h
Salome HOME
[Code coverage SketchAPI]: Remove unnecessary code. Add more unit-tests to improve...
[modules/shaper.git] / src / SketchAPI / SketchAPI_MacroCircle.h
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef SketchAPI_MacroCircle_H_
22 #define SketchAPI_MacroCircle_H_
23
24 #include "SketchAPI.h"
25 #include "SketchAPI_SketchEntity.h"
26
27 #include <SketchPlugin_MacroCircle.h>
28
29 class ModelHighAPI_Selection;
30
31 /// \class SketchAPI_MacroCircle
32 /// \ingroup CPPHighAPI
33 /// \brief Interface for Circle feature.
34 class SketchAPI_MacroCircle: public SketchAPI_SketchEntity
35 {
36 public:
37   /// Constructor without values.
38   SKETCHAPI_EXPORT
39   explicit SketchAPI_MacroCircle(const std::shared_ptr<ModelAPI_Feature>& theFeature);
40
41   /// Constructor with values.
42   SKETCHAPI_EXPORT
43   SketchAPI_MacroCircle(const std::shared_ptr<ModelAPI_Feature>& theFeature,
44                         double theCenterX,
45                         double theCenterY,
46                         double thePassedX,
47                         double thePassedY);
48
49   /// Constructor with values.
50   SKETCHAPI_EXPORT
51   SketchAPI_MacroCircle(const std::shared_ptr<ModelAPI_Feature>& theFeature,
52                         const std::shared_ptr<GeomAPI_Pnt2d>& theCenterPoint,
53                         const std::shared_ptr<GeomAPI_Pnt2d>& thePassedPoint);
54
55   /// Constructor with values.
56   SKETCHAPI_EXPORT
57   SketchAPI_MacroCircle(const std::shared_ptr<ModelAPI_Feature>& theFeature,
58                         double theX1, double theY1,
59                         double theX2, double theY2,
60                         double theX3, double theY3);
61
62   /// Constructor with values.
63   SKETCHAPI_EXPORT
64   SketchAPI_MacroCircle(const std::shared_ptr<ModelAPI_Feature>& theFeature,
65                         const std::shared_ptr<GeomAPI_Pnt2d>& thePoint1,
66                         const std::shared_ptr<GeomAPI_Pnt2d>& thePoint2,
67                         const std::shared_ptr<GeomAPI_Pnt2d>& thePoint3);
68
69   /// Destructor.
70   SKETCHAPI_EXPORT
71   virtual ~SketchAPI_MacroCircle();
72
73   INTERFACE_6(SketchPlugin_MacroCircle::ID(),
74               circleType, SketchPlugin_MacroCircle::CIRCLE_TYPE(),
75               ModelAPI_AttributeString, /** Circle type */,
76               centerPoint, SketchPlugin_MacroCircle::CENTER_POINT_ID(),
77               GeomDataAPI_Point2D, /** Center point */,
78               passedPoint, SketchPlugin_MacroCircle::PASSED_POINT_ID(),
79               GeomDataAPI_Point2D, /** Passed point */,
80               firstPoint, SketchPlugin_MacroCircle::FIRST_POINT_ID(),
81               GeomDataAPI_Point2D, /** First point */,
82               secondPoint, SketchPlugin_MacroCircle::SECOND_POINT_ID(),
83               GeomDataAPI_Point2D, /** Second point */,
84               thirdPoint, SketchPlugin_MacroCircle::THIRD_POINT_ID(),
85               GeomDataAPI_Point2D, /** Third point */)
86
87 private:
88   /// Set by center and passed points.
89   void setByCenterAndPassedPoints(double theCenterX, double theCenterY,
90                                   double thePassedX, double thePassedY);
91
92   /// Set by center and passed points.
93   void setByCenterAndPassedPoints(const std::shared_ptr<GeomAPI_Pnt2d>& theCenterPoint,
94                                   const std::shared_ptr<GeomAPI_Pnt2d>& thePassedPoint);
95
96   /// Set by three points.
97   void setByThreePoints(double theX1, double theY1,
98                         double theX2, double theY2,
99                         double theX3, double theY3);
100
101   /// Set by three points.
102   void setByThreePoints(const std::shared_ptr<GeomAPI_Pnt2d>& thePoint1,
103                         const std::shared_ptr<GeomAPI_Pnt2d>& thePoint2,
104                         const std::shared_ptr<GeomAPI_Pnt2d>& thePoint3);
105 };
106
107 /// Pointer on Circle object.
108 typedef std::shared_ptr<SketchAPI_MacroCircle> MacroCirclePtr;
109
110 #endif // SketchAPI_MacroCircle_H_