]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchAPI/SketchAPI_Sketch.cpp
Salome HOME
Issue #2024: Redesign of circle and arc of circle
[modules/shaper.git] / src / SketchAPI / SketchAPI_Sketch.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2 // Name   : SketchAPI_Sketch.cpp
3 // Purpose:
4 //
5 // History:
6 // 07/06/16 - Sergey POKHODENKO - Creation of the file
7
8 //--------------------------------------------------------------------------------------
9 #include "SketchAPI_Sketch.h"
10 //--------------------------------------------------------------------------------------
11 #include <SketchPlugin_Constraint.h>
12 #include <SketchPlugin_ConstraintAngle.h>
13 #include <SketchPlugin_ConstraintCoincidence.h>
14 #include <SketchPlugin_ConstraintCollinear.h>
15 #include <SketchPlugin_ConstraintDistance.h>
16 #include <SketchPlugin_ConstraintEqual.h>
17 #include <SketchPlugin_Fillet.h>
18 #include <SketchPlugin_ConstraintHorizontal.h>
19 #include <SketchPlugin_ConstraintLength.h>
20 #include <SketchPlugin_ConstraintMiddle.h>
21 #include <SketchPlugin_ConstraintMirror.h>
22 #include <SketchPlugin_ConstraintParallel.h>
23 #include <SketchPlugin_ConstraintPerpendicular.h>
24 #include <SketchPlugin_ConstraintRadius.h>
25 #include <SketchPlugin_ConstraintRigid.h>
26 #include <SketchPlugin_ConstraintSplit.h>
27 #include <SketchPlugin_Trim.h>
28 #include <SketchPlugin_ConstraintTangent.h>
29 #include <SketchPlugin_ConstraintVertical.h>
30 #include <SketcherPrs_Tools.h>
31 //--------------------------------------------------------------------------------------
32 #include <ModelAPI_CompositeFeature.h>
33 #include <ModelAPI_ResultConstruction.h>
34 #include <ModelHighAPI_Double.h>
35 #include <ModelHighAPI_Dumper.h>
36 #include <ModelHighAPI_RefAttr.h>
37 #include <ModelHighAPI_Selection.h>
38 #include <ModelHighAPI_Services.h>
39 #include <ModelHighAPI_Tools.h>
40 //--------------------------------------------------------------------------------------
41 #include "SketchAPI_Arc.h"
42 #include "SketchAPI_MacroArc.h"
43 #include "SketchAPI_Circle.h"
44 #include "SketchAPI_IntersectionPoint.h"
45 #include "SketchAPI_Line.h"
46 #include "SketchAPI_MacroCircle.h"
47 #include "SketchAPI_Mirror.h"
48 #include "SketchAPI_Point.h"
49 #include "SketchAPI_Projection.h"
50 #include "SketchAPI_Rectangle.h"
51 #include "SketchAPI_Rotation.h"
52 #include "SketchAPI_Translation.h"
53 //--------------------------------------------------------------------------------------
54 SketchAPI_Sketch::SketchAPI_Sketch(
55     const std::shared_ptr<ModelAPI_Feature> & theFeature)
56 : ModelHighAPI_Interface(theFeature)
57 {
58   initialize();
59 }
60
61 SketchAPI_Sketch::SketchAPI_Sketch(
62     const std::shared_ptr<ModelAPI_Feature> & theFeature,
63     const std::shared_ptr<GeomAPI_Ax3> & thePlane)
64 : ModelHighAPI_Interface(theFeature)
65 {
66   if (initialize()) {
67     setPlane(thePlane);
68   }
69 }
70
71 SketchAPI_Sketch::SketchAPI_Sketch(
72     const std::shared_ptr<ModelAPI_Feature> & theFeature,
73     const ModelHighAPI_Selection & theExternal)
74 : ModelHighAPI_Interface(theFeature)
75 {
76   if (initialize()) {
77     setExternal(theExternal);
78   }
79 }
80
81 SketchAPI_Sketch::SketchAPI_Sketch(
82     const std::shared_ptr<ModelAPI_Feature> & theFeature,
83     std::shared_ptr<ModelAPI_Object> thePlaneObject)
84 : ModelHighAPI_Interface(theFeature)
85 {
86   if (initialize()) {
87     setExternal(thePlaneObject);
88   }
89 }
90
91 SketchAPI_Sketch::~SketchAPI_Sketch()
92 {
93
94 }
95
96 //--------------------------------------------------------------------------------------
97 std::shared_ptr<ModelAPI_CompositeFeature> SketchAPI_Sketch::compositeFeature() const
98 {
99   return std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(feature());
100 }
101
102 //--------------------------------------------------------------------------------------
103 void SketchAPI_Sketch::setPlane(const std::shared_ptr<GeomAPI_Ax3> & thePlane)
104 {
105   fillAttribute(thePlane->origin(), myorigin);
106   fillAttribute(thePlane->dirX(), mydirX);
107   fillAttribute(thePlane->normal(), mynormal);
108
109   execute();
110 }
111
112 void SketchAPI_Sketch::setExternal(const ModelHighAPI_Selection & theExternal)
113 {
114   fillAttribute(theExternal, myexternal);
115
116   execute();
117 }
118
119 void SketchAPI_Sketch::setExternal(std::shared_ptr<ModelAPI_Object> thePlaneObject)
120 {
121   ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(thePlaneObject);
122   ModelHighAPI_Selection aSel(aRes);
123   setExternal(aSel);
124 }
125
126 //--------------------------------------------------------------------------------------
127 void SketchAPI_Sketch::setValue(
128     const std::shared_ptr<ModelHighAPI_Interface> & theConstraint,
129     const ModelHighAPI_Double & theValue)
130 {
131   fillAttribute(theValue, theConstraint->feature()->real(SketchPlugin_Constraint::VALUE()));
132
133 //  theConstraint->execute();
134 }
135
136 //--------------------------------------------------------------------------------------
137 std::list<ModelHighAPI_Selection> SketchAPI_Sketch::selectFace() const
138 {
139   const_cast<SketchAPI_Sketch*>(this)->execute();
140
141   std::list<ModelHighAPI_Selection> aSelectionList;
142
143   ResultConstructionPtr aResultConstruction =
144       std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(feature()->firstResult());
145   if (aResultConstruction.get() == NULL)
146     return aSelectionList;
147
148   for (int anIndex = 0; anIndex < aResultConstruction->facesNum(); ++anIndex) {
149     aSelectionList.push_back(
150         ModelHighAPI_Selection(aResultConstruction,
151                                aResultConstruction->face(anIndex)));
152   }
153
154   return aSelectionList;
155 }
156
157 //--------------------------------------------------------------------------------------
158 SketchPtr addSketch(const std::shared_ptr<ModelAPI_Document> & thePart,
159                     const std::shared_ptr<GeomAPI_Ax3> & thePlane)
160 {
161   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(SketchAPI_Sketch::ID());
162   return SketchPtr(new SketchAPI_Sketch(aFeature, thePlane));
163 }
164
165 SketchPtr addSketch(const std::shared_ptr<ModelAPI_Document> & thePart,
166                     const ModelHighAPI_Selection & theExternal)
167 {
168   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(SketchAPI_Sketch::ID());
169   return SketchPtr(new SketchAPI_Sketch(aFeature, theExternal));
170 }
171
172 SketchPtr addSketch(const std::shared_ptr<ModelAPI_Document> & thePart,
173                     const std::string & theExternalName)
174 {
175   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(SketchAPI_Sketch::ID());
176   return SketchPtr(
177     new SketchAPI_Sketch(aFeature, ModelHighAPI_Selection("FACE", theExternalName)));
178 }
179
180 SketchPtr addSketch(const std::shared_ptr<ModelAPI_Document> & thePart,
181                     std::shared_ptr<ModelAPI_Object> thePlaneObject)
182 {
183   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(SketchAPI_Sketch::ID());
184   return SketchPtr(new SketchAPI_Sketch(aFeature, thePlaneObject));
185 }
186
187
188 //--------------------------------------------------------------------------------------
189 std::shared_ptr<SketchAPI_Point> SketchAPI_Sketch::addPoint(
190     double theX, double theY)
191 {
192   std::shared_ptr<ModelAPI_Feature> aFeature =
193     compositeFeature()->addFeature(SketchPlugin_Point::ID());
194   return PointPtr(new SketchAPI_Point(aFeature, theX, theY));
195 }
196 std::shared_ptr<SketchAPI_Point> SketchAPI_Sketch::addPoint(
197     const std::shared_ptr<GeomAPI_Pnt2d> & thePoint)
198 {
199   std::shared_ptr<ModelAPI_Feature> aFeature =
200     compositeFeature()->addFeature(SketchPlugin_Point::ID());
201   return PointPtr(new SketchAPI_Point(aFeature, thePoint));
202 }
203 std::shared_ptr<SketchAPI_Point>
204   SketchAPI_Sketch::addPoint(const ModelHighAPI_Selection & theExternal)
205 {
206   std::shared_ptr<ModelAPI_Feature> aFeature =
207     compositeFeature()->addFeature(SketchPlugin_Point::ID());
208   return PointPtr(new SketchAPI_Point(aFeature, theExternal));
209 }
210 std::shared_ptr<SketchAPI_Point> SketchAPI_Sketch::addPoint(const std::string & theExternalName)
211 {
212   std::shared_ptr<ModelAPI_Feature> aFeature =
213     compositeFeature()->addFeature(SketchPlugin_Point::ID());
214   return PointPtr(new SketchAPI_Point(aFeature, theExternalName));
215 }
216
217 //--------------------------------------------------------------------------------------
218 std::shared_ptr<SketchAPI_IntersectionPoint> SketchAPI_Sketch::addIntersectionPoint(
219     const ModelHighAPI_Selection & theExternal)
220 {
221   std::shared_ptr<ModelAPI_Feature> aFeature =
222     compositeFeature()->addFeature(SketchPlugin_IntersectionPoint::ID());
223   return IntersectionPointPtr(new SketchAPI_IntersectionPoint(aFeature, theExternal));
224 }
225 std::shared_ptr<SketchAPI_IntersectionPoint> SketchAPI_Sketch::addIntersectionPoint(
226     const std::string & theExternalName)
227 {
228   std::shared_ptr<ModelAPI_Feature> aFeature =
229     compositeFeature()->addFeature(SketchPlugin_IntersectionPoint::ID());
230   return IntersectionPointPtr(new SketchAPI_IntersectionPoint(aFeature, theExternalName));
231 }
232
233 //--------------------------------------------------------------------------------------
234 std::shared_ptr<SketchAPI_Line> SketchAPI_Sketch::addLine(double theX1, double theY1,
235                                                           double theX2, double theY2)
236 {
237   std::shared_ptr<ModelAPI_Feature> aFeature =
238     compositeFeature()->addFeature(SketchPlugin_Line::ID());
239   return LinePtr(new SketchAPI_Line(aFeature, theX1, theY1, theX2, theY2));
240 }
241 std::shared_ptr<SketchAPI_Line> SketchAPI_Sketch::addLine(
242     const std::shared_ptr<GeomAPI_Pnt2d> & theStartPoint,
243     const std::shared_ptr<GeomAPI_Pnt2d> & theEndPoint)
244 {
245   std::shared_ptr<ModelAPI_Feature> aFeature =
246     compositeFeature()->addFeature(SketchPlugin_Line::ID());
247   return LinePtr(new SketchAPI_Line(aFeature, theStartPoint, theEndPoint));
248 }
249 std::shared_ptr<SketchAPI_Line>
250   SketchAPI_Sketch::addLine(const ModelHighAPI_Selection & theExternal)
251 {
252   std::shared_ptr<ModelAPI_Feature> aFeature =
253     compositeFeature()->addFeature(SketchPlugin_Line::ID());
254   return LinePtr(new SketchAPI_Line(aFeature, theExternal));
255 }
256 std::shared_ptr<SketchAPI_Line> SketchAPI_Sketch::addLine(const std::string & theExternalName)
257 {
258   std::shared_ptr<ModelAPI_Feature> aFeature =
259     compositeFeature()->addFeature(SketchPlugin_Line::ID());
260   return LinePtr(new SketchAPI_Line(aFeature, theExternalName));
261 }
262
263 //--------------------------------------------------------------------------------------
264 std::shared_ptr<SketchAPI_Rectangle> SketchAPI_Sketch::addRectangle(double theX1, double theY1,
265                                                                     double theX2, double theY2)
266 {
267   std::shared_ptr<ModelAPI_Feature> aFeature =
268     compositeFeature()->addFeature(SketchAPI_Rectangle::ID());
269   return RectanglePtr(new SketchAPI_Rectangle(aFeature, theX1, theY1, theX2, theY2));
270 }
271 std::shared_ptr<SketchAPI_Rectangle> SketchAPI_Sketch::addRectangle(
272     const std::shared_ptr<GeomAPI_Pnt2d> & theStartPoint,
273     const std::shared_ptr<GeomAPI_Pnt2d> & theEndPoint)
274 {
275   std::shared_ptr<ModelAPI_Feature> aFeature =
276     compositeFeature()->addFeature(SketchAPI_Rectangle::ID());
277   return RectanglePtr(new SketchAPI_Rectangle(aFeature, theStartPoint, theEndPoint));
278 }
279
280 //--------------------------------------------------------------------------------------
281 std::shared_ptr<SketchAPI_Circle> SketchAPI_Sketch::addCircle(double theCenterX,
282                                                               double theCenterY,
283                                                               double theRadius)
284 {
285   std::shared_ptr<ModelAPI_Feature> aFeature =
286     compositeFeature()->addFeature(SketchPlugin_Circle::ID());
287   return CirclePtr(new SketchAPI_Circle(aFeature, theCenterX, theCenterY, theRadius));
288 }
289
290 std::shared_ptr<SketchAPI_Circle> SketchAPI_Sketch::addCircle(
291                                     const std::shared_ptr<GeomAPI_Pnt2d>& theCenter,
292                                     double theRadius)
293 {
294   std::shared_ptr<ModelAPI_Feature> aFeature =
295     compositeFeature()->addFeature(SketchPlugin_Circle::ID());
296   return CirclePtr(new SketchAPI_Circle(aFeature, theCenter, theRadius));
297 }
298
299 std::shared_ptr<SketchAPI_MacroCircle> SketchAPI_Sketch::addCircle(double theCenterX,
300                                                                    double theCenterY,
301                                                                    double thePassedX,
302                                                                    double thePassedY)
303 {
304   std::shared_ptr<ModelAPI_Feature> aFeature =
305     compositeFeature()->addFeature(SketchPlugin_Circle::ID());
306   return MacroCirclePtr(new SketchAPI_MacroCircle(aFeature, theCenterX, theCenterY,
307                                                             thePassedX, thePassedY));
308 }
309
310 std::shared_ptr<SketchAPI_MacroCircle> SketchAPI_Sketch::addCircle(
311     const std::shared_ptr<GeomAPI_Pnt2d>& theCenterPoint,
312     const std::shared_ptr<GeomAPI_Pnt2d>& thePassedPoint)
313 {
314   std::shared_ptr<ModelAPI_Feature> aFeature =
315     compositeFeature()->addFeature(SketchPlugin_Circle::ID());
316   return MacroCirclePtr(new SketchAPI_MacroCircle(aFeature, theCenterPoint, thePassedPoint));
317 }
318
319 std::shared_ptr<SketchAPI_MacroCircle> SketchAPI_Sketch::addCircle(double theX1, double theY1,
320                                                                    double theX2, double theY2,
321                                                                    double theX3, double theY3)
322 {
323   std::shared_ptr<ModelAPI_Feature> aFeature =
324     compositeFeature()->addFeature(SketchPlugin_Circle::ID());
325   return MacroCirclePtr(new SketchAPI_MacroCircle(aFeature, theX1, theY1,
326                                                             theX2, theY2,
327                                                             theX3, theY3));
328 }
329
330 std::shared_ptr<SketchAPI_MacroCircle> SketchAPI_Sketch::addCircle(
331     const std::shared_ptr<GeomAPI_Pnt2d>& thePoint1,
332     const std::shared_ptr<GeomAPI_Pnt2d>& thePoint2,
333     const std::shared_ptr<GeomAPI_Pnt2d>& thePoint3)
334 {
335   std::shared_ptr<ModelAPI_Feature> aFeature =
336     compositeFeature()->addFeature(SketchPlugin_Circle::ID());
337   return MacroCirclePtr(new SketchAPI_MacroCircle(aFeature, thePoint1, thePoint2, thePoint3));
338 }
339
340 std::shared_ptr<SketchAPI_Circle>
341   SketchAPI_Sketch::addCircle(const ModelHighAPI_Selection & theExternal)
342 {
343   std::shared_ptr<ModelAPI_Feature> aFeature =
344     compositeFeature()->addFeature(SketchPlugin_Circle::ID());
345   return CirclePtr(new SketchAPI_Circle(aFeature, theExternal));
346 }
347
348 std::shared_ptr<SketchAPI_Circle> SketchAPI_Sketch::addCircle(const std::string & theExternalName)
349 {
350   // TODO(spo): Add constraint SketchConstraintRigid like in PythonAPI. Is it necessary?
351   std::shared_ptr<ModelAPI_Feature> aFeature =
352     compositeFeature()->addFeature(SketchPlugin_Circle::ID());
353   return CirclePtr(new SketchAPI_Circle(aFeature, theExternalName));
354 }
355
356 //--------------------------------------------------------------------------------------
357 std::shared_ptr<SketchAPI_Arc> SketchAPI_Sketch::addArc(double theCenterX, double theCenterY,
358                                                         double theStartX, double theStartY,
359                                                         double theEndX, double theEndY,
360                                                         bool theInversed)
361 {
362   std::shared_ptr<ModelAPI_Feature> aFeature =
363     compositeFeature()->addFeature(SketchPlugin_Arc::ID());
364   return ArcPtr(new SketchAPI_Arc(aFeature,
365                                   theCenterX, theCenterY,
366                                   theStartX, theStartY,
367                                   theEndX, theEndY,
368                                   theInversed));
369 }
370
371 std::shared_ptr<SketchAPI_Arc> SketchAPI_Sketch::addArc(
372                                               const std::shared_ptr<GeomAPI_Pnt2d>& theCenter,
373                                               const std::shared_ptr<GeomAPI_Pnt2d>& theStart,
374                                               const std::shared_ptr<GeomAPI_Pnt2d>& theEnd,
375                                               bool theInversed)
376 {
377   std::shared_ptr<ModelAPI_Feature> aFeature =
378     compositeFeature()->addFeature(SketchPlugin_Arc::ID());
379   return ArcPtr(new SketchAPI_Arc(aFeature, theCenter, theStart, theEnd, theInversed));
380 }
381
382 std::shared_ptr<SketchAPI_MacroArc> SketchAPI_Sketch::addArc(double theStartX, double theStartY,
383                                                         double theEndX, double theEndY,
384                                                         double thePassedX, double thePassedY)
385 {
386   std::shared_ptr<ModelAPI_Feature> aFeature =
387     compositeFeature()->addFeature(SketchPlugin_Arc::ID());
388   return MacroArcPtr(new SketchAPI_MacroArc(aFeature,
389                                        theStartX, theStartY,
390                                        theEndX, theEndY,
391                                        thePassedX, thePassedY));
392 }
393
394 std::shared_ptr<SketchAPI_MacroArc> SketchAPI_Sketch::addArc(
395                                                 const std::shared_ptr<GeomAPI_Pnt2d>& theStart,
396                                                 const std::shared_ptr<GeomAPI_Pnt2d>& theEnd,
397                                                 const std::shared_ptr<GeomAPI_Pnt2d>& thePassed)
398 {
399   std::shared_ptr<ModelAPI_Feature> aFeature =
400     compositeFeature()->addFeature(SketchPlugin_Arc::ID());
401   return MacroArcPtr(new SketchAPI_MacroArc(aFeature, theStart, theEnd, thePassed));
402 }
403
404 std::shared_ptr<SketchAPI_MacroArc> SketchAPI_Sketch::addArc(
405                                                 const ModelHighAPI_RefAttr& theTangentPoint,
406                                                 double theEndX, double theEndY,
407                                                 bool theInversed)
408 {
409   std::shared_ptr<ModelAPI_Feature> aFeature =
410     compositeFeature()->addFeature(SketchPlugin_Arc::ID());
411   return MacroArcPtr(new SketchAPI_MacroArc(aFeature, theTangentPoint, theEndX, theEndY, theInversed));
412 }
413
414 std::shared_ptr<SketchAPI_MacroArc> SketchAPI_Sketch::addArc(
415                                               const ModelHighAPI_RefAttr& theTangentPoint,
416                                               const std::shared_ptr<GeomAPI_Pnt2d>& theEnd,
417                                               bool theInversed)
418 {
419   std::shared_ptr<ModelAPI_Feature> aFeature =
420     compositeFeature()->addFeature(SketchPlugin_Arc::ID());
421   return MacroArcPtr(new SketchAPI_MacroArc(aFeature, theTangentPoint, theEnd, theInversed));
422 }
423
424 std::shared_ptr<SketchAPI_Arc> SketchAPI_Sketch::addArc(const ModelHighAPI_Selection & theExternal)
425 {
426   std::shared_ptr<ModelAPI_Feature> aFeature =
427     compositeFeature()->addFeature(SketchPlugin_Arc::ID());
428   return ArcPtr(new SketchAPI_Arc(aFeature, theExternal));
429 }
430
431 std::shared_ptr<SketchAPI_Arc> SketchAPI_Sketch::addArc(const std::string & theExternalName)
432 {
433   // TODO(spo): Add constraint SketchConstraintRigid like in PythonAPI. Is it necessary?
434   std::shared_ptr<ModelAPI_Feature> aFeature =
435     compositeFeature()->addFeature(SketchPlugin_Arc::ID());
436   return ArcPtr(new SketchAPI_Arc(aFeature, theExternalName));
437 }
438
439 //--------------------------------------------------------------------------------------
440 std::shared_ptr<SketchAPI_Projection> SketchAPI_Sketch::addProjection(
441     const ModelHighAPI_Selection & theExternalFeature)
442 {
443   std::shared_ptr<ModelAPI_Feature> aFeature =
444     compositeFeature()->addFeature(SketchPlugin_Projection::ID());
445   return ProjectionPtr(new SketchAPI_Projection(aFeature, theExternalFeature));
446 }
447
448 std::shared_ptr<SketchAPI_Projection> SketchAPI_Sketch::addProjection(
449     const std::string & theExternalName)
450 {
451   std::shared_ptr<ModelAPI_Feature> aFeature =
452     compositeFeature()->addFeature(SketchPlugin_Projection::ID());
453   return ProjectionPtr(new SketchAPI_Projection(aFeature, theExternalName));
454 }
455
456 //--------------------------------------------------------------------------------------
457 std::shared_ptr<SketchAPI_Mirror> SketchAPI_Sketch::addMirror(
458     const ModelHighAPI_RefAttr & theMirrorLine,
459     const std::list<std::shared_ptr<ModelAPI_Object> > & theObjects)
460 {
461   std::shared_ptr<ModelAPI_Feature> aFeature =
462     compositeFeature()->addFeature(SketchPlugin_ConstraintMirror::ID());
463   return MirrorPtr(new SketchAPI_Mirror(aFeature, theMirrorLine, theObjects));
464 }
465
466 //--------------------------------------------------------------------------------------
467 std::shared_ptr<SketchAPI_Translation> SketchAPI_Sketch::addTranslation(
468     const std::list<std::shared_ptr<ModelAPI_Object> > & theObjects,
469     const ModelHighAPI_RefAttr & thePoint1,
470     const ModelHighAPI_RefAttr & thePoint2,
471     const ModelHighAPI_Integer & theNumberOfObjects,
472     bool theFullValue)
473 {
474   std::shared_ptr<ModelAPI_Feature> aFeature =
475     compositeFeature()->addFeature(SketchPlugin_MultiTranslation::ID());
476   return TranslationPtr(new SketchAPI_Translation(aFeature, theObjects, thePoint1,
477                                                   thePoint2, theNumberOfObjects, theFullValue));
478 }
479
480 //--------------------------------------------------------------------------------------
481 std::shared_ptr<SketchAPI_Rotation> SketchAPI_Sketch::addRotation(
482     const std::list<std::shared_ptr<ModelAPI_Object> > & theObjects,
483     const ModelHighAPI_RefAttr & theCenter,
484     const ModelHighAPI_Double & theAngle,
485     const ModelHighAPI_Integer & theNumberOfObjects,
486     bool theFullValue)
487 {
488   std::shared_ptr<ModelAPI_Feature> aFeature =
489     compositeFeature()->addFeature(SketchPlugin_MultiRotation::ID());
490   return RotationPtr(
491     new SketchAPI_Rotation(aFeature, theObjects, theCenter,
492                            theAngle, theNumberOfObjects, theFullValue));
493 }
494
495 //--------------------------------------------------------------------------------------
496 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::addSplit(
497                                                     const ModelHighAPI_Reference& theFeature,
498                                                     const ModelHighAPI_RefAttr& thePoint1,
499                                                     const ModelHighAPI_RefAttr& thePoint2)
500 {
501   std::shared_ptr<ModelAPI_Feature> aFeature =
502     compositeFeature()->addFeature(SketchPlugin_ConstraintSplit::ID());
503   fillAttribute(theFeature, aFeature->reference(SketchPlugin_Constraint::VALUE()));
504   fillAttribute(thePoint1, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
505   fillAttribute(thePoint2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
506   //aFeature->execute();
507   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
508 }
509
510 //--------------------------------------------------------------------------------------
511 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::addTrim(
512                                         const ModelHighAPI_Reference& theFeature,
513                                         const std::shared_ptr<GeomAPI_Pnt2d>& thePositionPoint)
514 {
515   std::shared_ptr<ModelAPI_Feature> aFeature =
516     compositeFeature()->addFeature(SketchPlugin_Trim::ID());
517   fillAttribute(theFeature, aFeature->reference(SketchPlugin_Trim::SELECTED_OBJECT()));
518
519   AttributePtr anAttribute = aFeature->attribute(SketchPlugin_Trim::SELECTED_POINT());
520   if (anAttribute->attributeType() == GeomDataAPI_Point2D::typeId()) {
521     AttributePoint2DPtr aPointAttr = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(anAttribute);
522     fillAttribute(thePositionPoint, aPointAttr);
523   }
524
525   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
526 }
527
528 //--------------------------------------------------------------------------------------
529 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setAngle(
530     const ModelHighAPI_RefAttr & theLine1,
531     const ModelHighAPI_RefAttr & theLine2,
532     const ModelHighAPI_Double & theValue)
533 {
534   std::shared_ptr<ModelAPI_Feature> aFeature =
535       compositeFeature()->addFeature(SketchPlugin_ConstraintAngle::ID());
536   fillAttribute(SketcherPrs_Tools::ANGLE_DIRECT,
537       aFeature->integer(SketchPlugin_ConstraintAngle::TYPE_ID()));
538   // fill the value before llines to avoid calculation of angle value by the Angle feature
539   fillAttribute(theValue, aFeature->real(SketchPlugin_ConstraintAngle::ANGLE_VALUE_ID()));
540   fillAttribute(theLine1, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
541   fillAttribute(theLine2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
542   aFeature->execute();
543   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
544 }
545
546 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setAngleComplementary(
547     const ModelHighAPI_RefAttr & theLine1,
548     const ModelHighAPI_RefAttr & theLine2,
549     const ModelHighAPI_Double & theValue)
550 {
551   std::shared_ptr<ModelAPI_Feature> aFeature =
552       compositeFeature()->addFeature(SketchPlugin_ConstraintAngle::ID());
553   fillAttribute(SketcherPrs_Tools::ANGLE_COMPLEMENTARY,
554       aFeature->integer(SketchPlugin_ConstraintAngle::TYPE_ID()));
555   fillAttribute(theValue, aFeature->real(SketchPlugin_ConstraintAngle::ANGLE_VALUE_ID()));
556   fillAttribute(theLine1, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
557   fillAttribute(theLine2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
558 //  fillAttribute(theValue, aFeature->real(SketchPlugin_Constraint::VALUE()));
559   aFeature->execute();
560   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
561 }
562
563 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setAngleBackward(
564     const ModelHighAPI_RefAttr & theLine1,
565     const ModelHighAPI_RefAttr & theLine2,
566     const ModelHighAPI_Double & theValue)
567 {
568   std::shared_ptr<ModelAPI_Feature> aFeature =
569       compositeFeature()->addFeature(SketchPlugin_ConstraintAngle::ID());
570   fillAttribute(SketcherPrs_Tools::ANGLE_BACKWARD,
571       aFeature->integer(SketchPlugin_ConstraintAngle::TYPE_ID()));
572   fillAttribute(theValue, aFeature->real(SketchPlugin_ConstraintAngle::ANGLE_VALUE_ID()));
573   fillAttribute(theLine1, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
574   fillAttribute(theLine2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
575 //  fillAttribute(theValue, aFeature->real(SketchPlugin_Constraint::VALUE()));
576   aFeature->execute();
577   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
578 }
579
580 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setCoincident(
581     const ModelHighAPI_RefAttr & thePoint1,
582     const ModelHighAPI_RefAttr & thePoint2)
583 {
584   std::shared_ptr<ModelAPI_Feature> aFeature =
585       compositeFeature()->addFeature(SketchPlugin_ConstraintCoincidence::ID());
586   fillAttribute(thePoint1, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
587   fillAttribute(thePoint2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
588   aFeature->execute();
589   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
590 }
591
592 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setCollinear(
593     const ModelHighAPI_RefAttr & theLine1,
594     const ModelHighAPI_RefAttr & theLine2)
595 {
596   std::shared_ptr<ModelAPI_Feature> aFeature =
597       compositeFeature()->addFeature(SketchPlugin_ConstraintCollinear::ID());
598   fillAttribute(theLine1, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
599   fillAttribute(theLine2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
600   aFeature->execute();
601   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
602 }
603
604 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setDistance(
605     const ModelHighAPI_RefAttr & thePoint,
606     const ModelHighAPI_RefAttr & thePointOrLine,
607     const ModelHighAPI_Double & theValue)
608 {
609   std::shared_ptr<ModelAPI_Feature> aFeature =
610       compositeFeature()->addFeature(SketchPlugin_ConstraintDistance::ID());
611   fillAttribute(thePoint, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
612   fillAttribute(thePointOrLine, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
613   fillAttribute(theValue, aFeature->real(SketchPlugin_Constraint::VALUE()));
614   aFeature->execute();
615   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
616 }
617
618 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setEqual(
619     const ModelHighAPI_RefAttr & theObject1,
620     const ModelHighAPI_RefAttr & theObject2)
621 {
622   std::shared_ptr<ModelAPI_Feature> aFeature =
623       compositeFeature()->addFeature(SketchPlugin_ConstraintEqual::ID());
624   fillAttribute(theObject1, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
625   fillAttribute(theObject2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
626   aFeature->execute();
627   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
628 }
629
630 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setFillet(
631     const ModelHighAPI_RefAttr & thePoint)
632 {
633   std::shared_ptr<ModelAPI_Feature> aFeature =
634       compositeFeature()->addFeature(SketchPlugin_Fillet::ID());
635   fillAttribute(thePoint, aFeature->data()->refattr(SketchPlugin_Fillet::FILLET_POINT_ID()));
636   apply(); // finish operation to remove Fillet feature correcly
637   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
638 }
639
640 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setFilletWithRadius(
641     const ModelHighAPI_RefAttr & thePoint,
642     const ModelHighAPI_Double & theRadius)
643 {
644   CompositeFeaturePtr aSketch = compositeFeature();
645   int aNbSubs = aSketch->numberOfSubs();
646
647   // create fillet
648   InterfacePtr aFilletFeature = setFillet(thePoint);
649
650   // set radius for just created arc
651   FeaturePtr anArc = aSketch->subFeature(aNbSubs - 1);
652   if (anArc->getKind() == SketchPlugin_Arc::ID())
653     setRadius(ModelHighAPI_RefAttr(ObjectPtr(anArc->lastResult())), ModelHighAPI_Double(theRadius));
654
655   return aFilletFeature;
656 }
657
658 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setFixed(
659     const ModelHighAPI_RefAttr & theObject)
660 {
661   std::shared_ptr<ModelAPI_Feature> aFeature =
662       compositeFeature()->addFeature(SketchPlugin_ConstraintRigid::ID());
663   fillAttribute(theObject, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
664   aFeature->execute();
665   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
666 }
667
668 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setHorizontal(
669     const ModelHighAPI_RefAttr & theLine)
670 {
671   std::shared_ptr<ModelAPI_Feature> aFeature =
672       compositeFeature()->addFeature(SketchPlugin_ConstraintHorizontal::ID());
673   fillAttribute(theLine, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
674   aFeature->execute();
675   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
676 }
677
678 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setLength(
679     const ModelHighAPI_RefAttr & theLine,
680     const ModelHighAPI_Double & theValue)
681 {
682   std::shared_ptr<ModelAPI_Feature> aFeature =
683       compositeFeature()->addFeature(SketchPlugin_ConstraintLength::ID());
684   fillAttribute(theLine, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
685   fillAttribute(theValue, aFeature->real(SketchPlugin_Constraint::VALUE()));
686   aFeature->execute();
687   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
688 }
689
690 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setMiddlePoint(
691     const ModelHighAPI_RefAttr & thePoint,
692     const ModelHighAPI_RefAttr & theLine)
693 {
694   std::shared_ptr<ModelAPI_Feature> aFeature =
695       compositeFeature()->addFeature(SketchPlugin_ConstraintMiddle::ID());
696   fillAttribute(thePoint, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
697   fillAttribute(theLine, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
698   aFeature->execute();
699   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
700 }
701
702 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setParallel(
703     const ModelHighAPI_RefAttr & theLine1,
704     const ModelHighAPI_RefAttr & theLine2)
705 {
706   std::shared_ptr<ModelAPI_Feature> aFeature =
707       compositeFeature()->addFeature(SketchPlugin_ConstraintParallel::ID());
708   fillAttribute(theLine1, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
709   fillAttribute(theLine2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
710   aFeature->execute();
711   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
712 }
713
714 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setPerpendicular(
715     const ModelHighAPI_RefAttr & theLine1,
716     const ModelHighAPI_RefAttr & theLine2)
717 {
718   std::shared_ptr<ModelAPI_Feature> aFeature =
719       compositeFeature()->addFeature(SketchPlugin_ConstraintPerpendicular::ID());
720   fillAttribute(theLine1, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
721   fillAttribute(theLine2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
722   aFeature->execute();
723   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
724 }
725
726 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setRadius(
727     const ModelHighAPI_RefAttr & theCircleOrArc,
728     const ModelHighAPI_Double & theValue)
729 {
730   std::shared_ptr<ModelAPI_Feature> aFeature =
731       compositeFeature()->addFeature(SketchPlugin_ConstraintRadius::ID());
732   fillAttribute(theCircleOrArc, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
733   fillAttribute(theValue, aFeature->real(SketchPlugin_Constraint::VALUE()));
734   aFeature->execute();
735   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
736 }
737
738 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setTangent(
739     const ModelHighAPI_RefAttr & theLine,
740     const ModelHighAPI_RefAttr & theCircle)
741 {
742   std::shared_ptr<ModelAPI_Feature> aFeature =
743       compositeFeature()->addFeature(SketchPlugin_ConstraintTangent::ID());
744   fillAttribute(theLine, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
745   fillAttribute(theCircle, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
746   aFeature->execute();
747   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
748 }
749
750 std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setVertical(
751     const ModelHighAPI_RefAttr & theLine)
752 {
753   std::shared_ptr<ModelAPI_Feature> aFeature =
754       compositeFeature()->addFeature(SketchPlugin_ConstraintVertical::ID());
755   fillAttribute(theLine, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
756   aFeature->execute();
757   return InterfacePtr(new ModelHighAPI_Interface(aFeature));
758 }
759
760 //--------------------------------------------------------------------------------------
761
762 void SketchAPI_Sketch::dump(ModelHighAPI_Dumper& theDumper) const
763 {
764   FeaturePtr aBase = feature();
765   const std::string& aDocName = theDumper.name(aBase->document());
766
767   AttributeSelectionPtr anExternal = aBase->selection(SketchPlugin_SketchEntity::EXTERNAL_ID());
768   if (anExternal->value()) {
769     theDumper << aBase << " = model.addSketch(" << aDocName <<
770       ", " << anExternal << ")" << std::endl;
771   } else {
772     // Sketch is base on a plane.
773     std::shared_ptr<GeomAPI_Pnt> anOrigin = std::dynamic_pointer_cast<GeomDataAPI_Point>(
774         aBase->attribute(SketchPlugin_Sketch::ORIGIN_ID()))->pnt();
775     std::shared_ptr<GeomAPI_Dir> aNormal = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
776         aBase->attribute(SketchPlugin_Sketch::NORM_ID()))->dir();
777     std::shared_ptr<GeomAPI_Dir> aDirX = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
778         aBase->attribute(SketchPlugin_Sketch::DIRX_ID()))->dir();
779
780     // Check the plane is coordinate plane
781     std::string aPlaneName = defaultPlane(anOrigin, aNormal, aDirX);
782     if(anExternal->context()) { // checking for selected planes
783       if (!aPlaneName.empty()
784           && anExternal->context()->data()
785           && anExternal->context()->data()->name() == aPlaneName) {
786         // dump sketch based on coordinate plane
787         theDumper << aBase << " = model.addSketch(" << aDocName
788                   << ", model.standardPlane(\"" << aPlaneName << "\"))" << std::endl;
789       } else { // some other plane
790         theDumper << aBase << " = model.addSketch(" << aDocName <<
791           ", " << anExternal<< ")" << std::endl;
792       }
793     } else {
794       if (aPlaneName.empty()) {
795         // needs import additional module
796         theDumper.importModule("GeomAPI");
797         // dump plane parameters
798         const std::string& aSketchName = theDumper.name(aBase);
799         std::string anOriginName = aSketchName + "_origin";
800         std::string aNormalName  = aSketchName + "_norm";
801         std::string aDirXName    = aSketchName + "_dirx";
802         // use "\n" instead of std::endl to avoid automatic dumping sketch here
803         // and then dumplicate dumping it in the next line
804         theDumper << anOriginName << " = " << anOrigin << "\n"
805                   << aNormalName  << " = " << aNormal  << "\n"
806                   << aDirXName    << " = " << aDirX    << "\n";
807         // dump sketch based on arbitrary plane
808         theDumper << aBase << " = model.addSketch(" << aDocName << ", GeomAPI_Ax3("
809                   << anOriginName << ", " << aDirXName << ", " << aNormalName << "))" << std::endl;
810       } else {
811         // dump sketch based on coordinate plane
812         theDumper << aBase << " = model.addSketch(" << aDocName
813                   << ", model.defaultPlane(\"" << aPlaneName << "\"))" << std::endl;
814       }
815     }
816   }
817
818   // dump sketch's subfeatures
819   CompositeFeaturePtr aCompFeat = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aBase);
820   theDumper.processSubs(aCompFeat, true);
821 }