Salome HOME
Merge branch 'master' into cgt/devCEA
[modules/shaper.git] / src / SketchAPI / SketchAPI_Sketch.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 SRC_SKETCHAPI_SKETCHAPI_SKETCH_H_
22 #define SRC_SKETCHAPI_SKETCHAPI_SKETCH_H_
23
24 //--------------------------------------------------------------------------------------
25 #include "SketchAPI.h"
26
27 #include <list>
28
29 #include <SketchPlugin_Sketch.h>
30 #include <SketchPlugin_SketchEntity.h>
31
32 #include <ModelHighAPI_Interface.h>
33 #include <ModelHighAPI_Macro.h>
34 //--------------------------------------------------------------------------------------
35 class ModelAPI_CompositeFeature;
36 class ModelAPI_Object;
37 class ModelHighAPI_Double;
38 class ModelHighAPI_Integer;
39 class ModelHighAPI_RefAttr;
40 class ModelHighAPI_Reference;
41 class ModelHighAPI_Selection;
42 class SketchAPI_Arc;
43 class SketchAPI_MacroArc;
44 class SketchAPI_Circle;
45 class SketchAPI_MacroCircle;
46 class SketchAPI_IntersectionPoint;
47 class SketchAPI_Line;
48 class SketchAPI_Mirror;
49 class SketchAPI_Point;
50 class SketchAPI_Projection;
51 class SketchAPI_Rectangle;
52 class SketchAPI_Rotation;
53 class SketchAPI_Translation;
54 //--------------------------------------------------------------------------------------
55 /**\class SketchAPI_Sketch
56  * \ingroup CPPHighAPI
57  * \brief Interface for Sketch feature
58  */
59 class SketchAPI_Sketch : public ModelHighAPI_Interface
60 {
61 public:
62   /// Constructor without values
63   SKETCHAPI_EXPORT
64   explicit SketchAPI_Sketch(const std::shared_ptr<ModelAPI_Feature> & theFeature);
65   /// Constructor with values
66   SKETCHAPI_EXPORT
67   SketchAPI_Sketch(const std::shared_ptr<ModelAPI_Feature> & theFeature,
68                    const std::shared_ptr<GeomAPI_Ax3> & thePlane);
69   /// Constructor with values
70   SKETCHAPI_EXPORT
71   SketchAPI_Sketch(const std::shared_ptr<ModelAPI_Feature> & theFeature,
72                    const ModelHighAPI_Selection & theExternal);
73   /// Constructor with values
74   SKETCHAPI_EXPORT
75   SketchAPI_Sketch(const std::shared_ptr<ModelAPI_Feature> & theFeature,
76                    std::shared_ptr<ModelAPI_Object> thePlaneObject);
77   /// Destructor
78   SKETCHAPI_EXPORT
79   virtual ~SketchAPI_Sketch();
80
81   INTERFACE_7(SketchPlugin_Sketch::ID(),
82               origin, SketchPlugin_Sketch::ORIGIN_ID(),
83               GeomDataAPI_Point, /** Origin point */,
84               dirX, SketchPlugin_Sketch::DIRX_ID(),
85               GeomDataAPI_Dir, /** Direction of X */,
86               normal, SketchPlugin_Sketch::NORM_ID(),
87               GeomDataAPI_Dir, /** Normal */,
88               features, SketchPlugin_Sketch::FEATURES_ID(),
89               ModelAPI_AttributeRefList, /** Features */,
90               external, SketchPlugin_SketchEntity::EXTERNAL_ID(),
91               ModelAPI_AttributeSelection, /** External */,
92               solverError, SketchPlugin_Sketch::SOLVER_ERROR(),
93               ModelAPI_AttributeString, /** Solver error */,
94               solverDOF, SketchPlugin_Sketch::SOLVER_DOF(),
95               ModelAPI_AttributeString, /** Solver DOF */
96   )
97
98   /// Set plane
99   SKETCHAPI_EXPORT
100   void setPlane(const std::shared_ptr<GeomAPI_Ax3> & thePlane);
101
102   /// Set external
103   SKETCHAPI_EXPORT
104   void setExternal(const ModelHighAPI_Selection & theExternal);
105
106   /// Set external
107   SKETCHAPI_EXPORT
108   void setExternal(std::shared_ptr<ModelAPI_Object> thePlaneObject);
109
110   /// Add point
111   SKETCHAPI_EXPORT
112   std::shared_ptr<SketchAPI_Point> addPoint(
113       double theX, double theY);
114   /// Add point
115   SKETCHAPI_EXPORT
116   std::shared_ptr<SketchAPI_Point> addPoint(
117       const std::shared_ptr<GeomAPI_Pnt2d> & thePoint);
118   /// Add point
119   SKETCHAPI_EXPORT
120   std::shared_ptr<SketchAPI_Point> addPoint(const ModelHighAPI_Selection & theExternal);
121   /// Add point
122   SKETCHAPI_EXPORT
123   std::shared_ptr<SketchAPI_Point> addPoint(const std::string & theExternalName);
124
125   /// Add intersection point
126   SKETCHAPI_EXPORT
127   std::shared_ptr<SketchAPI_IntersectionPoint>
128     addIntersectionPoint(const ModelHighAPI_Selection & theExternal);
129   /// Add point
130   SKETCHAPI_EXPORT
131   std::shared_ptr<SketchAPI_IntersectionPoint>
132     addIntersectionPoint(const std::string & theExternalName);
133
134   /// Add line
135   SKETCHAPI_EXPORT
136   std::shared_ptr<SketchAPI_Line> addLine(
137       double theX1, double theY1, double theX2, double theY2);
138   /// Add line
139   SKETCHAPI_EXPORT
140   std::shared_ptr<SketchAPI_Line> addLine(
141       const std::shared_ptr<GeomAPI_Pnt2d> & theStartPoint,
142       const std::shared_ptr<GeomAPI_Pnt2d> & theEndPoint);
143   /// Add line
144   SKETCHAPI_EXPORT
145   std::shared_ptr<SketchAPI_Line> addLine(const ModelHighAPI_Selection & theExternal);
146   /// Add line
147   SKETCHAPI_EXPORT
148   std::shared_ptr<SketchAPI_Line> addLine(const std::string & theExternalName);
149
150   /// Add rectangle
151   SKETCHAPI_EXPORT
152   std::shared_ptr<SketchAPI_Rectangle> addRectangle(
153       double theX1, double theY1, double theX2, double theY2);
154   /// Add rectangle
155   SKETCHAPI_EXPORT
156   std::shared_ptr<SketchAPI_Rectangle> addRectangle(
157       const std::shared_ptr<GeomAPI_Pnt2d> & theStartPoint,
158       const std::shared_ptr<GeomAPI_Pnt2d> & theEndPoint);
159
160   /// Add circle
161   SKETCHAPI_EXPORT
162   std::shared_ptr<SketchAPI_Circle> addCircle(
163       double theCenterX, double theCenterY,
164       double theRadius);
165   /// Add circle
166   SKETCHAPI_EXPORT
167   std::shared_ptr<SketchAPI_Circle> addCircle(
168       const std::shared_ptr<GeomAPI_Pnt2d>& theCenter,
169       double theRadius);
170   /// Add circle
171   SKETCHAPI_EXPORT
172   std::shared_ptr<SketchAPI_MacroCircle> addCircle(
173       double theCenterX, double theCenterY,
174       double thePassedX, double thePassedY);
175   /// Add circle
176   SKETCHAPI_EXPORT
177   std::shared_ptr<SketchAPI_MacroCircle> addCircle(
178       const std::shared_ptr<GeomAPI_Pnt2d>& theCenterPoint,
179       const std::shared_ptr<GeomAPI_Pnt2d>& thePassedPoint);
180   /// Add circle
181   SKETCHAPI_EXPORT
182   std::shared_ptr<SketchAPI_MacroCircle> addCircle(
183       double theX1, double theY1,
184       double theX2, double theY2,
185       double theX3, double theY3);
186   /// Add circle
187   SKETCHAPI_EXPORT
188   std::shared_ptr<SketchAPI_MacroCircle> addCircle(
189       const std::shared_ptr<GeomAPI_Pnt2d>& thePoint1,
190       const std::shared_ptr<GeomAPI_Pnt2d>& thePoint2,
191       const std::shared_ptr<GeomAPI_Pnt2d>& thePoint3);
192   /// Add circle
193   SKETCHAPI_EXPORT
194   std::shared_ptr<SketchAPI_Circle> addCircle(const ModelHighAPI_Selection & theExternal);
195   /// Add circle
196   SKETCHAPI_EXPORT
197   std::shared_ptr<SketchAPI_Circle> addCircle(const std::string & theExternalName);
198
199   /// Add arc
200   SKETCHAPI_EXPORT
201   std::shared_ptr<SketchAPI_Arc> addArc(
202       double theCenterX, double theCenterY,
203       double theStartX, double theStartY,
204       double theEndX, double theEndY,
205       bool theInversed);
206
207   /// Add arc
208   SKETCHAPI_EXPORT
209   std::shared_ptr<SketchAPI_Arc> addArc(
210       const std::shared_ptr<GeomAPI_Pnt2d>& theCenter,
211       const std::shared_ptr<GeomAPI_Pnt2d>& theStart,
212       const std::shared_ptr<GeomAPI_Pnt2d>& theEnd,
213       bool theInversed);
214
215   /// Add arc
216   SKETCHAPI_EXPORT
217   std::shared_ptr<SketchAPI_MacroArc> addArc(
218       double theStartX, double theStartY,
219       double theEndX, double theEndY,
220       double thePassedX, double thePassedY);
221
222   /// Add arc
223   SKETCHAPI_EXPORT
224   std::shared_ptr<SketchAPI_MacroArc> addArc(
225       const std::shared_ptr<GeomAPI_Pnt2d>& theStart,
226       const std::shared_ptr<GeomAPI_Pnt2d>& theEnd,
227       const std::shared_ptr<GeomAPI_Pnt2d>& thePassed);
228
229   /// Add arc
230   SKETCHAPI_EXPORT
231   std::shared_ptr<SketchAPI_MacroArc> addArc(
232       const ModelHighAPI_RefAttr& theTangentPoint,
233       double theEndX, double theEndY,
234       bool theInversed);
235
236   /// Add arc
237   SKETCHAPI_EXPORT
238   std::shared_ptr<SketchAPI_MacroArc> addArc(
239       const ModelHighAPI_RefAttr& theTangentPoint,
240       const std::shared_ptr<GeomAPI_Pnt2d>& theEnd,
241       bool theInversed);
242
243   /// Add arc
244   SKETCHAPI_EXPORT
245   std::shared_ptr<SketchAPI_Arc> addArc(const ModelHighAPI_Selection & theExternal);
246
247   /// Add arc
248   SKETCHAPI_EXPORT
249   std::shared_ptr<SketchAPI_Arc> addArc(const std::string & theExternalName);
250
251   /// Add projection
252   SKETCHAPI_EXPORT
253   std::shared_ptr<SketchAPI_Projection> addProjection(
254       const ModelHighAPI_Selection & theExternalFeature);
255
256   /// Add projection
257   SKETCHAPI_EXPORT
258   std::shared_ptr<SketchAPI_Projection> addProjection(const std::string & theExternalName);
259
260   /// Add mirror
261   SKETCHAPI_EXPORT
262   std::shared_ptr<SketchAPI_Mirror> addMirror(
263       const ModelHighAPI_RefAttr & theMirrorLine,
264       const std::list<std::shared_ptr<ModelAPI_Object> > & theObjects);
265
266   /// Add translation
267   SKETCHAPI_EXPORT
268   std::shared_ptr<SketchAPI_Translation> addTranslation(
269       const std::list<std::shared_ptr<ModelAPI_Object> > & theObjects,
270       const ModelHighAPI_RefAttr & thePoint1,
271       const ModelHighAPI_RefAttr & thePoint2,
272       const ModelHighAPI_Integer & theNumberOfObjects,
273       bool theFullValue = false);
274
275   /// Add rotation
276   SKETCHAPI_EXPORT
277   std::shared_ptr<SketchAPI_Rotation> addRotation(
278       const std::list<std::shared_ptr<ModelAPI_Object> > & theObjects,
279       const ModelHighAPI_RefAttr & theCenter,
280       const ModelHighAPI_Double & theAngle,
281       const ModelHighAPI_Integer & theNumberOfObjects,
282       bool theFullValue = false);
283
284   /// Add split
285   SKETCHAPI_EXPORT
286   std::shared_ptr<ModelHighAPI_Interface> addSplit(
287       const ModelHighAPI_Reference& theFeature,
288       const std::shared_ptr<GeomAPI_Pnt2d>& thePositionPoint);
289
290   /// Add trim
291   SKETCHAPI_EXPORT
292   std::shared_ptr<ModelHighAPI_Interface> addTrim(
293       const ModelHighAPI_Reference& theFeature,
294       const std::shared_ptr<GeomAPI_Pnt2d>& thePositionPoint);
295
296   /// Set angle
297   SKETCHAPI_EXPORT
298   std::shared_ptr<ModelHighAPI_Interface> setAngle(
299       const ModelHighAPI_RefAttr & theLine1,
300       const ModelHighAPI_RefAttr & theLine2,
301       const ModelHighAPI_Double & theValue);
302
303   /// Set complementary angle
304   SKETCHAPI_EXPORT
305   std::shared_ptr<ModelHighAPI_Interface> setAngleComplementary(
306       const ModelHighAPI_RefAttr & theLine1,
307       const ModelHighAPI_RefAttr & theLine2,
308       const ModelHighAPI_Double & theValue);
309
310   /// Set backward angle (= 360 - angle)
311   SKETCHAPI_EXPORT
312   std::shared_ptr<ModelHighAPI_Interface> setAngleBackward(
313       const ModelHighAPI_RefAttr & theLine1,
314       const ModelHighAPI_RefAttr & theLine2,
315       const ModelHighAPI_Double & theValue);
316
317   /// Set coincident
318   SKETCHAPI_EXPORT
319   std::shared_ptr<ModelHighAPI_Interface> setCoincident(
320       const ModelHighAPI_RefAttr & thePoint1,
321       const ModelHighAPI_RefAttr & thePoint2);
322
323   /// Set collinear
324   SKETCHAPI_EXPORT
325   std::shared_ptr<ModelHighAPI_Interface> setCollinear(
326       const ModelHighAPI_RefAttr & theLine1,
327       const ModelHighAPI_RefAttr & theLine2);
328
329   /// Set distance
330   SKETCHAPI_EXPORT
331   std::shared_ptr<ModelHighAPI_Interface> setDistance(
332       const ModelHighAPI_RefAttr & thePoint,
333       const ModelHighAPI_RefAttr & thePointOrLine,
334       const ModelHighAPI_Double & theValue);
335
336   /// Set equal
337   SKETCHAPI_EXPORT
338   std::shared_ptr<ModelHighAPI_Interface> setEqual(
339       const ModelHighAPI_RefAttr & theObject1,
340       const ModelHighAPI_RefAttr & theObject2);
341
342   /// Set fillet
343   SKETCHAPI_EXPORT
344   std::shared_ptr<ModelHighAPI_Interface> setFillet(
345       const ModelHighAPI_RefAttr & thePoint);
346
347   /// Set fillet with additional radius constraint
348   SKETCHAPI_EXPORT
349   std::shared_ptr<ModelHighAPI_Interface> setFilletWithRadius(
350       const ModelHighAPI_RefAttr & thePoint,
351       const ModelHighAPI_Double & theRadius);
352
353   /// Set fixed
354   SKETCHAPI_EXPORT
355   std::shared_ptr<ModelHighAPI_Interface> setFixed(
356       const ModelHighAPI_RefAttr & theObject);
357
358   /// Set horizontal
359   SKETCHAPI_EXPORT
360   std::shared_ptr<ModelHighAPI_Interface> setHorizontal(
361       const ModelHighAPI_RefAttr & theLine);
362
363   /// Set length
364   SKETCHAPI_EXPORT
365   std::shared_ptr<ModelHighAPI_Interface> setLength(
366       const ModelHighAPI_RefAttr & theLine,
367       const ModelHighAPI_Double & theValue);
368
369   /// Set middle
370   SKETCHAPI_EXPORT
371   std::shared_ptr<ModelHighAPI_Interface> setMiddlePoint(
372       const ModelHighAPI_RefAttr & thePoint,
373       const ModelHighAPI_RefAttr & theLine);
374
375   /// Set parallel
376   SKETCHAPI_EXPORT
377   std::shared_ptr<ModelHighAPI_Interface> setParallel(
378       const ModelHighAPI_RefAttr & theLine1,
379       const ModelHighAPI_RefAttr & theLine2);
380
381   /// Set perpendicular
382   SKETCHAPI_EXPORT
383   std::shared_ptr<ModelHighAPI_Interface> setPerpendicular(
384       const ModelHighAPI_RefAttr & theLine1,
385       const ModelHighAPI_RefAttr & theLine2);
386
387   /// Set radius
388   SKETCHAPI_EXPORT
389   std::shared_ptr<ModelHighAPI_Interface> setRadius(
390       const ModelHighAPI_RefAttr & theCircleOrArc,
391       const ModelHighAPI_Double & theValue);
392
393   /// Set tangent
394   SKETCHAPI_EXPORT
395   std::shared_ptr<ModelHighAPI_Interface> setTangent(
396       const ModelHighAPI_RefAttr & theLine,
397       const ModelHighAPI_RefAttr & theCircle);
398
399   /// Set vertical
400   SKETCHAPI_EXPORT
401   std::shared_ptr<ModelHighAPI_Interface> setVertical(
402       const ModelHighAPI_RefAttr & theLine);
403
404   /// Set constraint value
405   SKETCHAPI_EXPORT
406   void setValue(
407       const std::shared_ptr<ModelHighAPI_Interface> & theConstraint,
408       const ModelHighAPI_Double & theValue);
409
410   SKETCHAPI_EXPORT
411   std::shared_ptr<GeomAPI_Pnt2d> to2D(const std::shared_ptr<GeomAPI_Pnt>& thePoint);
412
413   // TODO(spo): rename to selectFaces() or faces() (or add faces() -> list to SWIG)
414   /// Select face
415   SKETCHAPI_EXPORT
416   std::list<ModelHighAPI_Selection> selectFace() const;
417
418   /// Dump wrapped feature
419   SKETCHAPI_EXPORT
420   virtual void dump(ModelHighAPI_Dumper& theDumper) const;
421
422 protected:
423   std::shared_ptr<ModelAPI_CompositeFeature> compositeFeature() const;
424
425 };
426
427 //! Pointer on Sketch object
428 typedef std::shared_ptr<SketchAPI_Sketch> SketchPtr;
429
430 /**\ingroup CPPHighAPI
431  * \brief Create Sketch feature
432  */
433 SKETCHAPI_EXPORT
434 SketchPtr addSketch(const std::shared_ptr<ModelAPI_Document> & thePart,
435                     const std::shared_ptr<GeomAPI_Ax3> & thePlane);
436
437 /**\ingroup CPPHighAPI
438  * \brief Create Sketch feature
439  */
440 SKETCHAPI_EXPORT
441 SketchPtr addSketch(const std::shared_ptr<ModelAPI_Document> & thePart,
442                     const ModelHighAPI_Selection & theExternal);
443
444 /**\ingroup CPPHighAPI
445  * \brief Create Sketch feature
446  */
447 SKETCHAPI_EXPORT
448 SketchPtr addSketch(const std::shared_ptr<ModelAPI_Document> & thePart,
449                     const std::string & theExternalName);
450
451 /**\ingroup CPPHighAPI
452  * \brief Create Sketch feature
453  */
454 SKETCHAPI_EXPORT
455 SketchPtr addSketch(const std::shared_ptr<ModelAPI_Document> & thePart,
456                     std::shared_ptr<ModelAPI_Object> thePlaneObject);
457
458 //--------------------------------------------------------------------------------------
459 //--------------------------------------------------------------------------------------
460 #endif /* SRC_SKETCHAPI_SKETCHAPI_SKETCH_H_ */