Salome HOME
Set the orientation of the Distance constraint
[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       bool isSigned = false);
336
337   /// Set signed distance
338   SKETCHAPI_EXPORT
339   std::shared_ptr<ModelHighAPI_Interface> setSignedDistance(
340       const ModelHighAPI_RefAttr & thePoint,
341       const ModelHighAPI_RefAttr & thePointOrLine,
342       const ModelHighAPI_Double & theValue);
343
344   /// Set unsigned distance
345   SKETCHAPI_EXPORT
346   std::shared_ptr<ModelHighAPI_Interface> setUnsignedDistance(
347       const ModelHighAPI_RefAttr & thePoint,
348       const ModelHighAPI_RefAttr & thePointOrLine,
349       const ModelHighAPI_Double & theValue);
350
351   /// Set horizontal distance
352   SKETCHAPI_EXPORT
353   std::shared_ptr<ModelHighAPI_Interface> setHorizontalDistance(
354       const ModelHighAPI_RefAttr & thePoint1,
355       const ModelHighAPI_RefAttr & thePoint2,
356       const ModelHighAPI_Double & theValue);
357
358   /// Set vertical distance
359   SKETCHAPI_EXPORT
360   std::shared_ptr<ModelHighAPI_Interface> setVerticalDistance(
361       const ModelHighAPI_RefAttr & thePoint1,
362       const ModelHighAPI_RefAttr & thePoint2,
363       const ModelHighAPI_Double & theValue);
364
365   /// Set equal
366   SKETCHAPI_EXPORT
367   std::shared_ptr<ModelHighAPI_Interface> setEqual(
368       const ModelHighAPI_RefAttr & theObject1,
369       const ModelHighAPI_RefAttr & theObject2);
370
371   /// Set fillet
372   SKETCHAPI_EXPORT
373   std::shared_ptr<ModelHighAPI_Interface> setFillet(
374       const ModelHighAPI_RefAttr & thePoint);
375
376   /// Set fillet with additional radius constraint
377   SKETCHAPI_EXPORT
378   std::shared_ptr<ModelHighAPI_Interface> setFilletWithRadius(
379       const ModelHighAPI_RefAttr & thePoint,
380       const ModelHighAPI_Double & theRadius);
381
382   /// Set fixed
383   SKETCHAPI_EXPORT
384   std::shared_ptr<ModelHighAPI_Interface> setFixed(
385       const ModelHighAPI_RefAttr & theObject);
386
387   /// Set horizontal
388   SKETCHAPI_EXPORT
389   std::shared_ptr<ModelHighAPI_Interface> setHorizontal(
390       const ModelHighAPI_RefAttr & theLine);
391
392   /// Set length
393   SKETCHAPI_EXPORT
394   std::shared_ptr<ModelHighAPI_Interface> setLength(
395       const ModelHighAPI_RefAttr & theLine,
396       const ModelHighAPI_Double & theValue);
397
398   /// Set middle
399   SKETCHAPI_EXPORT
400   std::shared_ptr<ModelHighAPI_Interface> setMiddlePoint(
401       const ModelHighAPI_RefAttr & thePoint,
402       const ModelHighAPI_RefAttr & theLine);
403
404   /// Set parallel
405   SKETCHAPI_EXPORT
406   std::shared_ptr<ModelHighAPI_Interface> setParallel(
407       const ModelHighAPI_RefAttr & theLine1,
408       const ModelHighAPI_RefAttr & theLine2);
409
410   /// Set perpendicular
411   SKETCHAPI_EXPORT
412   std::shared_ptr<ModelHighAPI_Interface> setPerpendicular(
413       const ModelHighAPI_RefAttr & theLine1,
414       const ModelHighAPI_RefAttr & theLine2);
415
416   /// Set radius
417   SKETCHAPI_EXPORT
418   std::shared_ptr<ModelHighAPI_Interface> setRadius(
419       const ModelHighAPI_RefAttr & theCircleOrArc,
420       const ModelHighAPI_Double & theValue);
421
422   /// Set tangent
423   SKETCHAPI_EXPORT
424   std::shared_ptr<ModelHighAPI_Interface> setTangent(
425       const ModelHighAPI_RefAttr & theLine,
426       const ModelHighAPI_RefAttr & theCircle);
427
428   /// Set vertical
429   SKETCHAPI_EXPORT
430   std::shared_ptr<ModelHighAPI_Interface> setVertical(
431       const ModelHighAPI_RefAttr & theLine);
432
433   /// Set constraint value
434   SKETCHAPI_EXPORT
435   void setValue(
436       const std::shared_ptr<ModelHighAPI_Interface> & theConstraint,
437       const ModelHighAPI_Double & theValue);
438
439   /// Move point or sketch feature
440   SKETCHAPI_EXPORT
441   void move(const ModelHighAPI_RefAttr& theMovedEntity,
442             const std::shared_ptr<GeomAPI_Pnt2d>& theTargetPoint);
443
444   /// Move point or sketch feature
445   SKETCHAPI_EXPORT
446   void move(const ModelHighAPI_RefAttr& theMovedEntity,
447             double theTargetX, double theTargetY);
448
449   SKETCHAPI_EXPORT
450   std::shared_ptr<GeomAPI_Pnt2d> to2D(const std::shared_ptr<GeomAPI_Pnt>& thePoint);
451
452   // TODO(spo): rename to selectFaces() or faces() (or add faces() -> list to SWIG)
453   /// Select face
454   SKETCHAPI_EXPORT
455   std::list<ModelHighAPI_Selection> selectFace() const;
456
457   /// Dump wrapped feature
458   SKETCHAPI_EXPORT
459   virtual void dump(ModelHighAPI_Dumper& theDumper) const;
460
461 protected:
462   std::shared_ptr<ModelAPI_CompositeFeature> compositeFeature() const;
463
464 };
465
466 //! Pointer on Sketch object
467 typedef std::shared_ptr<SketchAPI_Sketch> SketchPtr;
468
469 /**\ingroup CPPHighAPI
470  * \brief Create Sketch feature
471  */
472 SKETCHAPI_EXPORT
473 SketchPtr addSketch(const std::shared_ptr<ModelAPI_Document> & thePart,
474                     const std::shared_ptr<GeomAPI_Ax3> & thePlane);
475
476 /**\ingroup CPPHighAPI
477  * \brief Create Sketch feature
478  */
479 SKETCHAPI_EXPORT
480 SketchPtr addSketch(const std::shared_ptr<ModelAPI_Document> & thePart,
481                     const ModelHighAPI_Selection & theExternal);
482
483 /**\ingroup CPPHighAPI
484  * \brief Create Sketch feature
485  */
486 SKETCHAPI_EXPORT
487 SketchPtr addSketch(const std::shared_ptr<ModelAPI_Document> & thePart,
488                     const std::string & theExternalName);
489
490 /**\ingroup CPPHighAPI
491  * \brief Create Sketch feature
492  */
493 SKETCHAPI_EXPORT
494 SketchPtr addSketch(const std::shared_ptr<ModelAPI_Document> & thePart,
495                     std::shared_ptr<ModelAPI_Object> thePlaneObject);
496
497 //--------------------------------------------------------------------------------------
498 //--------------------------------------------------------------------------------------
499 #endif /* SRC_SKETCHAPI_SKETCHAPI_SKETCH_H_ */