Salome HOME
Merge branch 'master' into cgt/devCEA
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_ShapeAPI.h
1 // Copyright (C) 2014-2016 CEA/DEN, EDF R&D
2
3 // File:        GeomAlgoAPI_ShapeAPI.h
4 // Created:     17 Mar 2016
5 // Author:      Clarisse Genrault (CEA)
6
7 #ifndef GEOMALGOAPI_SHAPEAPI_H
8 #define GEOMALGOAPI_SHAPEAPI_H
9
10 #include <GeomAPI_Ax1.h>
11 #include <GeomAPI_Ax2.h>
12 #include <GeomAPI_Edge.h>
13 #include <GeomAPI_Pnt.h>
14 #include <GeomAPI_Shape.h>
15
16 #include <GeomAlgoAPI_Exception.h>
17
18 namespace GeomAlgoAPI_ShapeAPI
19 {
20 /**\class GeomAlgoAPI_ShapeAPI
21  * \ingroup DataAlgo
22  * \brief Allows to access the direct API
23  */
24 class GEOMALGOAPI_EXPORT GeomAlgoAPI_ShapeAPI
25 {
26 public:
27   /// Creates a box using the dimensions.
28   /// \param theDx The dimension on X
29   /// \param theDy The dimension on Y
30   /// \param theDz The dimension on Z
31   /// \return a shape
32   static std::shared_ptr<GeomAPI_Shape> makeBox(const double theDx, const double theDy,
33                                                 const double theDz) throw (GeomAlgoAPI_Exception);
34
35   /// Creates a box using the two points that defined a diagonal.
36   /// \param theFirstPoint One extermity of the diagonal
37   /// \param theSecondPoint The other extremity of the diagonal
38   /// \return a shape
39   static std::shared_ptr<GeomAPI_Shape> makeBox(std::shared_ptr<GeomAPI_Pnt> theFirstPoint,
40                      std::shared_ptr<GeomAPI_Pnt> theSecondPoint) throw (GeomAlgoAPI_Exception);
41
42   /// Creates a cylinder using a center, an axis, a radius and a height.
43   /// \param theBasePoint The center of the lower base of the cylinder
44   /// \param theEdge The axis of the cylinder
45   /// \param theRadius The radius of the cylinder
46   /// \param theHeight The heigth of the cylinder
47   static std::shared_ptr<GeomAPI_Shape> makeCylinder(std::shared_ptr<GeomAPI_Pnt> theBasePoint,
48                      std::shared_ptr<GeomAPI_Edge> theEdge, double theRadius, double theHeight)
49                      throw (GeomAlgoAPI_Exception);
50
51   /// Creates a portion of cylinder using a center, an axis, a radius, a height and an angle.
52   /// \param theBasePoint The center of the lower base of the cylinder
53   /// \param theEdge The axis of the cylinder
54   /// \param theRadius The radius of the cylinder
55   /// \param theHeight The heigth of the cylinder
56   /// \param theAngle The angle defining the portion
57   static std::shared_ptr<GeomAPI_Shape> makeCylinder(std::shared_ptr<GeomAPI_Pnt> theBasePoint,
58                      std::shared_ptr<GeomAPI_Edge> theEdge, double theRadius, double theHeight,
59                      double theAngle) throw (GeomAlgoAPI_Exception);
60
61   /// Creates a cylinder using the origin, the OZ axis, a radius and a height.
62   /// \param theRadius The radius of the cylinder
63   /// \param theHeight The heigth of the cylinder
64   static std::shared_ptr<GeomAPI_Shape> makeCylinder(double theRadius, double theHeight)
65                      throw (GeomAlgoAPI_Exception);
66
67   /// Creates a portion of cylinder using the origin, the OZ axis, a radius, a height and an angle.
68   /// \param theRadius The radius of the cylinder
69   /// \param theHeight The heigth of the cylinder
70   /// \param theAngle The angle defining the portion
71   static std::shared_ptr<GeomAPI_Shape> makeCylinder(double theRadius, double theHeight,
72                      double theAngle) throw (GeomAlgoAPI_Exception);
73
74   /// Performs a translation from an axis and a distance.
75   /// \param theSourceShape Shape to be moved
76   /// \param theAxis Movement axis
77   /// \param theDistance Movement distance
78   /// \return a shape
79   static std::shared_ptr<GeomAPI_Shape> makeTranslation(
80                      std::shared_ptr<GeomAPI_Shape> theSourceShape,
81                      std::shared_ptr<GeomAPI_Ax1> theAxis,
82                      const double theDistance) throw (GeomAlgoAPI_Exception);
83
84   /// Performs a translation from dimensions.
85   /// \param theSourceShape Shape to be moved
86   /// \param theDx Movement dimension on X
87   /// \param theDy Movement dimension on Y
88   /// \param theDz Movement dimension on Z
89   /// \return a shape
90   static std::shared_ptr<GeomAPI_Shape> makeTranslation(
91                      std::shared_ptr<GeomAPI_Shape> theSourceShape,
92                      const double theDx,
93                      const double theDy,
94                      const double theDz) throw (GeomAlgoAPI_Exception);
95
96   /// Performs a translation from two points.
97   /// \param theSourceShape Shape to be moved
98   /// \param theStartPoint Movement start point
99   /// \param theEndPoint Movement end point
100   /// \return a shape
101   static std::shared_ptr<GeomAPI_Shape> makeTranslation(
102                      std::shared_ptr<GeomAPI_Shape> theSourceShape,
103                      std::shared_ptr<GeomAPI_Pnt> theStartPoint,
104                      std::shared_ptr<GeomAPI_Pnt> theEndPoint) throw (GeomAlgoAPI_Exception);
105
106   /// Performs a rotation from an axis and an angle.
107   /// \param theSourceShape Shape to be rotated
108   /// \param theAxis Movement axis
109   /// \param theAngle Movement angle
110   /// \return a shape
111   static std::shared_ptr<GeomAPI_Shape> makeRotation(
112                      std::shared_ptr<GeomAPI_Shape> theSourceShape,
113                      std::shared_ptr<GeomAPI_Ax1> theAxis,
114                      const double theAngle) throw (GeomAlgoAPI_Exception);
115
116   /// Performs a rotation from three points.
117   /// \param theSourceShape Shape to be rotated
118   /// \param theCenterPoint Movement center point
119   /// \param theStartPoint Movement start point
120   /// \param theEndPoint Movement end point
121   /// \return a shape
122   static std::shared_ptr<GeomAPI_Shape> makeRotation(
123                      std::shared_ptr<GeomAPI_Shape> theSourceShape,
124                      std::shared_ptr<GeomAPI_Pnt> theCenterPoint,
125                      std::shared_ptr<GeomAPI_Pnt> theStartPoint,
126                      std::shared_ptr<GeomAPI_Pnt> theEndPoint) throw (GeomAlgoAPI_Exception);
127
128   /// Performs a symmetry by a point.
129   /// \param theSourceShape Shape be symmetrized
130   /// \param thePoint Point of symmetry
131   static std::shared_ptr<GeomAPI_Shape> makeSymmetry(
132                      std::shared_ptr<GeomAPI_Shape> theSourceShape,
133                      std::shared_ptr<GeomAPI_Pnt> thePoint) throw (GeomAlgoAPI_Exception);
134
135   /// Performs a symmetry by an axis.
136   /// \param theSourceShape Shape be symmetrized
137   /// \param theAxis Axis of symmetry
138   static std::shared_ptr<GeomAPI_Shape> makeSymmetry(
139                      std::shared_ptr<GeomAPI_Shape> theSourceShape,
140                      std::shared_ptr<GeomAPI_Ax1> theAxis) throw (GeomAlgoAPI_Exception);
141
142   /// Performs a symmetry by a plane.
143   /// \param theSourceShape Shape be symmetrized
144   /// \param thePlane Plane of symmetry
145   static std::shared_ptr<GeomAPI_Shape> makeSymmetry(
146                      std::shared_ptr<GeomAPI_Shape> theSourceShape,
147                      std::shared_ptr<GeomAPI_Ax2> thePlane) throw (GeomAlgoAPI_Exception);
148
149   /// Performs a scale by a scale factor.
150   /// \param theSourceShape Shape be scaled
151   /// \param theCenterPoint Point of scale
152   /// \param theScaleFactor Factor of scale
153   static std::shared_ptr<GeomAPI_Shape> makeScale(
154                      std::shared_ptr<GeomAPI_Shape> theSourceShape,
155                      std::shared_ptr<GeomAPI_Pnt> theCenterPoint,
156                      const double theScaleFactor) throw (GeomAlgoAPI_Exception);
157
158   /// Performs a scale by dimensions.
159   /// \param theSourceShape Shape be scaled
160   /// \param theCenterPoint Point of scale
161   /// \param theScaleFactorX Factor of scale in X
162   /// \param theScaleFactorY Factor of scale in Y
163   /// \param theScaleFactorZ Factor of scale in Z
164   static std::shared_ptr<GeomAPI_Shape> makeScale(
165                      std::shared_ptr<GeomAPI_Shape> theSourceShape,
166                      std::shared_ptr<GeomAPI_Pnt> theCenterPoint,
167                      const double theScaleFactorX,
168                      const double theScaleFactorY,
169                      const double theScaleFactorZ) throw (GeomAlgoAPI_Exception);
170
171   /// Performs a multi translation along one axis, at a distance and a number of times
172   /// \param theSourceShape Shape to be moved
173   /// \param theAxis Movement axis
174   /// \param theStep Movement step
175   /// \param theNumber Movement number
176   /// \return a shape
177   static std::shared_ptr<GeomAPI_Shape> makeMultiTranslation(
178                      std::shared_ptr<GeomAPI_Shape> theSourceShape,
179                      std::shared_ptr<GeomAPI_Ax1> theAxis,
180                      const double theStep,
181                      const int theNumber) throw (GeomAlgoAPI_Exception);
182
183   /// Performs a multi translation along two axis : a different distance on each axis
184   /// and a different number of times for each axis
185   /// \param theSourceShape Shape to be moved
186   /// \param theFirstAxis First movement axis
187   /// \param theFirstStep First movement step
188   /// \param theFirstNumber First movement number
189   /// \param theSecondAxis First movement axis
190   /// \param theSecondStep First movement step
191   /// \param theSecondNumber First movement number
192   /// \return a shape
193   static std::shared_ptr<GeomAPI_Shape> makeMultiTranslation(
194                      std::shared_ptr<GeomAPI_Shape> theSourceShape,
195                      std::shared_ptr<GeomAPI_Ax1> theFirstAxis,
196                      const double theFirstStep,
197                      const int theFirstNumber,
198                      std::shared_ptr<GeomAPI_Ax1> theSecondAxis,
199                      const double theSecondStep,
200                      const int theSecondNumber) throw (GeomAlgoAPI_Exception);
201
202   /// Creates a cone segment using standard GDML parameters.
203   /// \param theRMin1 Inner radius at base of cone
204   /// \param theRMax1 Outer radius at base of cone
205   /// \param theRMin2 Inner radius at top of cone
206   /// \param theRMax2 Outer radius at top of cone
207   /// \param theZ Height of cone segment
208   /// \param theStartPhi Start angle of the segment
209   /// \param theDeltaPhi Angle of the segment
210   static std::shared_ptr<GeomAPI_Shape> makeConeSegment(
211                      const double theRMin1,
212                      const double theRMax1,
213                      const double theRMin2,
214                      const double theRMax2,
215                      const double theZ,
216                      const double theStartPhi,
217                      const double theDeltaPhi) throw (GeomAlgoAPI_Exception);
218 };
219 }
220 #endif