1 // Copyright (C) 2014-2020 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #ifndef SketchAPI_MacroEllipse_H_
21 #define SketchAPI_MacroEllipse_H_
23 #include "SketchAPI.h"
24 #include "SketchAPI_SketchEntity.h"
26 #include <SketchPlugin_MacroEllipse.h>
28 class ModelHighAPI_RefAttr;
29 class SketchAPI_Point;
32 /// \class SketchAPI_MacroEllipse
33 /// \ingroup CPPHighAPI
34 /// \brief Interface for Ellipse feature.
35 class SketchAPI_MacroEllipse: public SketchAPI_SketchEntity
38 /// Constructor without values.
40 explicit SketchAPI_MacroEllipse(const std::shared_ptr<ModelAPI_Feature>& theFeature,
41 bool callInitialize = true);
43 /// Constructor with values.
45 SketchAPI_MacroEllipse(const std::shared_ptr<ModelAPI_Feature>& theFeature,
46 double theX1, double theY1,
47 double theX2, double theY2,
48 double theX3, double theY3,
49 bool byCenter = true);
51 /// Constructor with values.
53 SketchAPI_MacroEllipse(const std::shared_ptr<ModelAPI_Feature>& theFeature,
54 const std::shared_ptr<GeomAPI_Pnt2d>& thePoint1,
55 const std::shared_ptr<GeomAPI_Pnt2d>& thePoint2,
56 const std::shared_ptr<GeomAPI_Pnt2d>& thePoint3,
57 bool byCenter = true);
59 /// Constructor with values and/or references.
61 SketchAPI_MacroEllipse(const std::shared_ptr<ModelAPI_Feature>& theFeature,
62 const std::shared_ptr<GeomAPI_Pnt2d>& thePoint1,
63 const ModelHighAPI_RefAttr& thePoint1Ref,
64 const std::shared_ptr<GeomAPI_Pnt2d>& thePoint2,
65 const ModelHighAPI_RefAttr& thePoint2Ref,
66 const std::shared_ptr<GeomAPI_Pnt2d>& thePoint3,
67 const ModelHighAPI_RefAttr& thePoint3Ref,
68 bool byCenter = true);
72 virtual ~SketchAPI_MacroEllipse();
74 INTERFACE_1(SketchPlugin_MacroEllipse::ID(),
75 ellipseType, SketchPlugin_MacroEllipse::ELLIPSE_TYPE(),
76 ModelAPI_AttributeString, /** Ellipse type */)
78 /// Return created auxiliary center point
79 SKETCHAPI_EXPORT std::shared_ptr<SketchAPI_Point> center();
80 /// Return created auxiliary focus in the positive direction of major axis
81 SKETCHAPI_EXPORT std::shared_ptr<SketchAPI_Point> focus1();
82 /// Return created auxiliary focus in the negative direction of major axis
83 SKETCHAPI_EXPORT std::shared_ptr<SketchAPI_Point> focus2();
84 /// Return created auxiliary point - start of major axis
85 SKETCHAPI_EXPORT std::shared_ptr<SketchAPI_Point> majorAxisStart();
86 /// Return created auxiliary point - end of major axis
87 SKETCHAPI_EXPORT std::shared_ptr<SketchAPI_Point> majorAxisEnd();
88 /// Return created auxiliary point - start of minor axis
89 SKETCHAPI_EXPORT std::shared_ptr<SketchAPI_Point> minorAxisStart();
90 /// Return created auxiliary point - end of minor axis
91 SKETCHAPI_EXPORT std::shared_ptr<SketchAPI_Point> minorAxisEnd();
92 /// Return created auxiliary major axis
93 SKETCHAPI_EXPORT std::shared_ptr<SketchAPI_Line> majorAxis();
94 /// Return created auxiliary minor axis
95 SKETCHAPI_EXPORT std::shared_ptr<SketchAPI_Line> minorAxis();
98 // find a parent sketch
99 void storeSketch(const std::shared_ptr<ModelAPI_Feature>& theFeature);
102 /// Set flag of creation by center, major semi-axis and passed point.
103 void setByCenterAndPassedPoints(const std::shared_ptr<GeomAPI_Pnt2d>& theCenter,
104 const ModelHighAPI_RefAttr& theCenterRef,
105 const std::shared_ptr<GeomAPI_Pnt2d>& theMajorAxisPoint,
106 const ModelHighAPI_RefAttr& theMajorAxisPointRef,
107 const std::shared_ptr<GeomAPI_Pnt2d>& thePassedPoint,
108 const ModelHighAPI_RefAttr& thePassedPointRef);
109 /// Set flag of creation by major axis and passed point.
110 void setByMajorAxisAndPassedPoint(const std::shared_ptr<GeomAPI_Pnt2d>& theMajorAxisStart,
111 const ModelHighAPI_RefAttr& theMajorAxisStartRef,
112 const std::shared_ptr<GeomAPI_Pnt2d>& theMajorAxisEnd,
113 const ModelHighAPI_RefAttr& theMajorAxisEndRef,
114 const std::shared_ptr<GeomAPI_Pnt2d>& thePassedPoint,
115 const ModelHighAPI_RefAttr& thePassedPointRef);
117 /// Collect auxiliary features
118 void collectAuxiliary();
121 CompositeFeaturePtr mySketch;
122 std::shared_ptr<SketchAPI_Point> myCenter;
123 std::shared_ptr<SketchAPI_Point> myFocus1;
124 std::shared_ptr<SketchAPI_Point> myFocus2;
125 std::shared_ptr<SketchAPI_Point> myMajorAxisStart;
126 std::shared_ptr<SketchAPI_Point> myMajorAxisEnd;
127 std::shared_ptr<SketchAPI_Point> myMinorAxisStart;
128 std::shared_ptr<SketchAPI_Point> myMinorAxisEnd;
129 std::shared_ptr<SketchAPI_Line> myMajorAxis;
130 std::shared_ptr<SketchAPI_Line> myMinorAxis;
133 /// Pointer on Circle object.
134 typedef std::shared_ptr<SketchAPI_MacroEllipse> MacroEllipsePtr;
136 #endif // SketchAPI_MacroEllipse_H_