Salome HOME
Merge branch 'master' into cgt/devCEA
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_MacroArc.cpp
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 #include "SketchPlugin_MacroArc.h"
22
23 #include "SketchPlugin_Arc.h"
24 #include "SketchPlugin_ConstraintTangent.h"
25 #include "SketchPlugin_Sketch.h"
26 #include "SketchPlugin_Tools.h"
27 #include "SketchPlugin_MacroArcReentrantMessage.h"
28
29 #include <ModelAPI_AttributeDouble.h>
30 #include <ModelAPI_AttributeRefAttr.h>
31 #include <ModelAPI_AttributeString.h>
32 #include <ModelAPI_Events.h>
33 #include <ModelAPI_Session.h>
34 #include <ModelAPI_Validator.h>
35
36 #include <GeomAPI_Circ.h>
37 #include <GeomAPI_Circ2d.h>
38 #include <GeomAPI_Curve.h>
39 #include <GeomAPI_Dir2d.h>
40 #include <GeomAPI_Edge.h>
41 #include <GeomAPI_Lin.h>
42 #include <GeomAPI_Lin2d.h>
43 #include <GeomAPI_Pnt2d.h>
44 #include <GeomAPI_Vertex.h>
45 #include <GeomAPI_XY.h>
46 #include <GeomAPI_ShapeIterator.h>
47
48 #include <GeomDataAPI_Point2D.h>
49 #include <GeomDataAPI_Dir.h>
50
51 #include <GeomAlgoAPI_Circ2dBuilder.h>
52 #include <GeomAlgoAPI_EdgeBuilder.h>
53 #include <GeomAlgoAPI_CompoundBuilder.h>
54 #include <GeomAlgoAPI_PointBuilder.h>
55
56 // for sqrt on Linux
57 #include <math.h>
58
59 const double tolerance = 1e-7;
60 const double paramTolerance = 1.e-4;
61 const double PI = 3.141592653589793238463;
62
63 static void projectPointOnCircle(AttributePoint2DPtr& thePoint, const GeomAPI_Circ2d& theCircle)
64 {
65   std::shared_ptr<GeomAPI_Pnt2d> aProjection = theCircle.project(thePoint->pnt());
66   if(aProjection.get())
67     thePoint->setValue(aProjection);
68 }
69
70 static void intersectShapeAndCircle(const GeomShapePtr& theShape,
71                                     const GeomAPI_Circ2d& theCircle,
72                                     const SketchPlugin_Sketch* theSketch,
73                                     AttributePoint2DPtr& theIntersection)
74 {
75   if (!theShape->isEdge())
76     return projectPointOnCircle(theIntersection, theCircle);
77
78   // convert shape to unbounded
79   std::shared_ptr<GeomAPI_Edge> anEdge(new GeomAPI_Edge(theShape));
80   if (anEdge->isLine()) {
81     static const double HALF_SIZE = 1.e6;
82     std::shared_ptr<GeomAPI_XYZ> aLoc = anEdge->line()->location()->xyz();
83     std::shared_ptr<GeomAPI_XYZ> aDir = anEdge->line()->direction()->xyz();
84
85     std::shared_ptr<GeomAPI_Pnt> aStart(
86         new GeomAPI_Pnt(aLoc->added(aDir->multiplied(-HALF_SIZE))));
87     std::shared_ptr<GeomAPI_Pnt> aEnd(
88         new GeomAPI_Pnt(aLoc->added(aDir->multiplied(HALF_SIZE))));
89     anEdge = GeomAlgoAPI_EdgeBuilder::line(aStart, aEnd);
90   } else if (anEdge->isArc()) {
91     std::shared_ptr<GeomAPI_Circ> aCircle = anEdge->circle();
92     anEdge = GeomAlgoAPI_EdgeBuilder::lineCircle(
93         aCircle->center(), aCircle->normal(), aCircle->radius());
94   }
95
96   // convert 2D circle to 3D object
97   std::shared_ptr<GeomAPI_Pnt2d> aCenter2d = theCircle.center();
98   std::shared_ptr<GeomAPI_Pnt> aCenter(theSketch->to3D(aCenter2d->x(), aCenter2d->y()));
99   std::shared_ptr<GeomDataAPI_Dir> aNDir = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
100       const_cast<SketchPlugin_Sketch*>(theSketch)->attribute(SketchPlugin_Sketch::NORM_ID()));
101   std::shared_ptr<GeomAPI_Dir> aNormal(new GeomAPI_Dir(aNDir->x(), aNDir->y(), aNDir->z()));
102
103   GeomShapePtr aCircleShape =
104       GeomAlgoAPI_EdgeBuilder::lineCircle(aCenter, aNormal, theCircle.radius());
105
106   GeomShapePtr anInter = anEdge->intersect(aCircleShape);
107   std::shared_ptr<GeomAPI_Pnt2d> anInterPnt;
108   if (!anInter)
109     return projectPointOnCircle(theIntersection, theCircle);
110   if (anInter->isVertex()) {
111     std::shared_ptr<GeomAPI_Vertex> aVertex(new GeomAPI_Vertex(anInter));
112     anInterPnt = theSketch->to2D(aVertex->point());
113   } else if (anInter->isCompound()) {
114     double aMinDist = 1.e300;
115
116     GeomAPI_ShapeIterator anIt(anInter);
117     for (; anIt.more(); anIt.next()) {
118       GeomShapePtr aCurrent = anIt.current();
119       if (!aCurrent->isVertex())
120         continue;
121       std::shared_ptr<GeomAPI_Vertex> aVertex(new GeomAPI_Vertex(aCurrent));
122       std::shared_ptr<GeomAPI_Pnt2d> aPnt = theSketch->to2D(aVertex->point());
123       double aDist = aPnt->distance(theIntersection->pnt());
124       if (aDist < aMinDist) {
125         aMinDist = aDist;
126         anInterPnt = aPnt;
127       }
128     }
129   }
130   if(anInterPnt.get()) {
131     theIntersection->setValue(anInterPnt);
132   }
133 }
134
135
136 SketchPlugin_MacroArc::SketchPlugin_MacroArc()
137 : SketchPlugin_SketchEntity(),
138   myParamBefore(0.0)
139 {
140 }
141
142 void SketchPlugin_MacroArc::initAttributes()
143 {
144   data()->addAttribute(ARC_TYPE(), ModelAPI_AttributeString::typeId());
145
146   data()->addAttribute(CENTER_POINT_ID(), GeomDataAPI_Point2D::typeId());
147   data()->addAttribute(START_POINT_1_ID(), GeomDataAPI_Point2D::typeId());
148   data()->addAttribute(END_POINT_1_ID(), GeomDataAPI_Point2D::typeId());
149
150   data()->addAttribute(START_POINT_2_ID(), GeomDataAPI_Point2D::typeId());
151   data()->addAttribute(END_POINT_2_ID(), GeomDataAPI_Point2D::typeId());
152   data()->addAttribute(PASSED_POINT_ID(), GeomDataAPI_Point2D::typeId());
153
154   data()->addAttribute(TANGENT_POINT_ID(), ModelAPI_AttributeRefAttr::typeId());
155   data()->addAttribute(END_POINT_3_ID(), GeomDataAPI_Point2D::typeId());
156
157   data()->addAttribute(REVERSED_ID(), ModelAPI_AttributeBoolean::typeId());
158
159   data()->addAttribute(RADIUS_ID(), ModelAPI_AttributeDouble::typeId());
160   data()->addAttribute(ANGLE_ID(), ModelAPI_AttributeDouble::typeId());
161
162   data()->addAttribute(AUXILIARY_ID(), ModelAPI_AttributeBoolean::typeId());
163
164   data()->addAttribute(CENTER_POINT_REF_ID(), ModelAPI_AttributeRefAttr::typeId());
165   data()->addAttribute(START_POINT_REF_ID(), ModelAPI_AttributeRefAttr::typeId());
166   data()->addAttribute(END_POINT_REF_ID(), ModelAPI_AttributeRefAttr::typeId());
167   data()->addAttribute(PASSED_POINT_REF_ID(), ModelAPI_AttributeRefAttr::typeId());
168
169   data()->addAttribute(EDIT_ARC_TYPE_ID(), ModelAPI_AttributeString::typeId());
170
171   boolean(REVERSED_ID())->setValue(false);
172   string(EDIT_ARC_TYPE_ID())->setValue("");
173
174   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), CENTER_POINT_REF_ID());
175   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), START_POINT_REF_ID());
176   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), END_POINT_REF_ID());
177   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), PASSED_POINT_REF_ID());
178   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), EDIT_ARC_TYPE_ID());
179 }
180
181 void SketchPlugin_MacroArc::attributeChanged(const std::string& theID)
182 {
183   std::string anArcType = string(ARC_TYPE())->value();
184
185   // If arc type switched reset according attributes.
186   if(theID == ARC_TYPE()) {
187     SketchPlugin_Tools::resetAttribute(this, CENTER_POINT_ID());
188     SketchPlugin_Tools::resetAttribute(this, CENTER_POINT_REF_ID());
189     SketchPlugin_Tools::resetAttribute(this, START_POINT_1_ID());
190     SketchPlugin_Tools::resetAttribute(this, START_POINT_REF_ID());
191     SketchPlugin_Tools::resetAttribute(this, END_POINT_1_ID());
192     SketchPlugin_Tools::resetAttribute(this, END_POINT_REF_ID());
193     SketchPlugin_Tools::resetAttribute(this, START_POINT_2_ID());
194     SketchPlugin_Tools::resetAttribute(this, END_POINT_2_ID());
195     SketchPlugin_Tools::resetAttribute(this, PASSED_POINT_ID());
196     SketchPlugin_Tools::resetAttribute(this, PASSED_POINT_REF_ID());
197     SketchPlugin_Tools::resetAttribute(this, TANGENT_POINT_ID());
198     SketchPlugin_Tools::resetAttribute(this, END_POINT_3_ID());
199     SketchPlugin_Tools::resetAttribute(this, REVERSED_ID());
200     SketchPlugin_Tools::resetAttribute(this, RADIUS_ID());
201     SketchPlugin_Tools::resetAttribute(this, ANGLE_ID());
202
203     myCenter.reset();
204     myStart.reset();
205     myEnd.reset();
206     boolean(REVERSED_ID())->setValue(false);
207     myParamBefore = 0.0;
208   } else if(anArcType == ARC_TYPE_BY_CENTER_AND_POINTS())
209     fillByCenterAndTwoPassed();
210   else if(anArcType == ARC_TYPE_BY_THREE_POINTS())
211     fillByThreePassedPoints();
212   else if(anArcType == ARC_TYPE_BY_TANGENT_EDGE())
213     fillByTangentEdge();
214
215   double aRadius = 0;
216   double anAngle = 0;
217   if(myCenter.get() && myStart.get()) {
218     aRadius = myCenter->distance(myStart);
219     if(myEnd.get()) {
220       if(myStart->isEqual(myEnd)) {
221         anAngle = 360;
222       } else {
223         GeomAPI_Circ2d aCircleForArc(myCenter, myStart);
224         double aStartParam, anEndParam;
225         aCircleForArc.parameter(myStart, paramTolerance, aStartParam);
226         aCircleForArc.parameter(myEnd, paramTolerance, anEndParam);
227         anAngle = (anEndParam - aStartParam) / PI * 180.0;
228         if(boolean(REVERSED_ID())->value()) anAngle = 360.0 - anAngle;
229       }
230     }
231   }
232
233   bool aWasBlocked = data()->blockSendAttributeUpdated(true);
234   if(myCenter.get()) {
235     // center attribute is used in processEvent() to set reference to reentrant arc
236     std::dynamic_pointer_cast<GeomDataAPI_Point2D>(attribute(CENTER_POINT_ID()))
237         ->setValue(myCenter);
238   }
239   real(RADIUS_ID())->setValue(aRadius);
240   real(ANGLE_ID())->setValue(anAngle);
241   data()->blockSendAttributeUpdated(aWasBlocked, false);
242 }
243
244 GeomShapePtr SketchPlugin_MacroArc::getArcShape(bool isBound)
245 {
246   if(!myStart.get() || !myEnd.get() || !myCenter.get()) {
247     return GeomShapePtr();
248   }
249
250   SketchPlugin_Sketch* aSketch = sketch();
251   if(!aSketch) {
252     return GeomShapePtr();
253   }
254
255   std::shared_ptr<GeomAPI_Pnt> aCenter(aSketch->to3D(myCenter->x(), myCenter->y()));
256   std::shared_ptr<GeomAPI_Pnt> aStart(aSketch->to3D(myStart->x(), myStart->y()));
257   std::shared_ptr<GeomAPI_Pnt> anEnd(aSketch->to3D(myEnd->x(), myEnd->y()));
258   std::shared_ptr<GeomDataAPI_Dir> aNDir =
259     std::dynamic_pointer_cast<GeomDataAPI_Dir>(aSketch->attribute(SketchPlugin_Sketch::NORM_ID()));
260   std::shared_ptr<GeomAPI_Dir> aNormal(new GeomAPI_Dir(aNDir->x(), aNDir->y(), aNDir->z()));
261
262   GeomShapePtr anArcShape;
263   if (isBound) {
264     anArcShape = boolean(REVERSED_ID())->value() ?
265         GeomAlgoAPI_EdgeBuilder::lineCircleArc(aCenter, anEnd, aStart, aNormal)
266       : GeomAlgoAPI_EdgeBuilder::lineCircleArc(aCenter, aStart, anEnd, aNormal);
267   } else {
268     double aRadius = aCenter->distance(aStart);
269     anArcShape = GeomAlgoAPI_EdgeBuilder::lineCircle(aCenter, aNormal, aRadius);
270   }
271
272   return anArcShape;
273 }
274
275 AISObjectPtr SketchPlugin_MacroArc::getAISObject(AISObjectPtr thePrevious)
276 {
277   GeomShapePtr anArcShape = getArcShape();
278   if(!anArcShape.get())
279     return AISObjectPtr();
280
281   SketchPlugin_Sketch* aSketch = sketch();
282   std::shared_ptr<GeomAPI_Pnt> aCenter = aSketch->to3D(myCenter->x(), myCenter->y());;
283   GeomShapePtr aCenterPointShape = GeomAlgoAPI_PointBuilder::vertex(aCenter);
284
285   if(!aCenterPointShape.get())
286     return AISObjectPtr();
287
288   std::list<std::shared_ptr<GeomAPI_Shape> > aShapes;
289   aShapes.push_back(anArcShape);
290   aShapes.push_back(aCenterPointShape);
291
292   std::shared_ptr<GeomAPI_Shape> aCompound = GeomAlgoAPI_CompoundBuilder::compound(aShapes);
293   AISObjectPtr anAIS = thePrevious;
294   if(!anAIS.get()) {
295     anAIS.reset(new GeomAPI_AISObject());
296   }
297   anAIS->createShape(aCompound);
298   return anAIS;
299 }
300
301 void SketchPlugin_MacroArc::execute()
302 {
303   FeaturePtr anArcFeature = createArcFeature();
304
305   myCenter.reset();
306   myStart.reset();
307   myEnd.reset();
308
309   // Create constraints.
310   std::string anArcType = string(ARC_TYPE())->value();
311   if(anArcType == ARC_TYPE_BY_CENTER_AND_POINTS()) {
312     SketchPlugin_Tools::createConstraint(this,
313                                          CENTER_POINT_REF_ID(),
314                                          anArcFeature->attribute(SketchPlugin_Arc::CENTER_ID()),
315                                          ObjectPtr(),
316                                          false);
317     SketchPlugin_Tools::createConstraint(this,
318                                          START_POINT_REF_ID(),
319                                          anArcFeature->attribute(SketchPlugin_Arc::START_ID()),
320                                          ObjectPtr(),
321                                          false);
322     SketchPlugin_Tools::createConstraint(this,
323                                          END_POINT_REF_ID(),
324                                          anArcFeature->attribute(SketchPlugin_Arc::END_ID()),
325                                          ObjectPtr(),
326                                          false);
327   } else if(anArcType == ARC_TYPE_BY_THREE_POINTS()) {
328     SketchPlugin_Tools::createConstraint(this,
329                                          START_POINT_REF_ID(),
330                                          anArcFeature->attribute(SketchPlugin_Arc::START_ID()),
331                                          ObjectPtr(),
332                                          false);
333     SketchPlugin_Tools::createConstraint(this,
334                                          END_POINT_REF_ID(),
335                                          anArcFeature->attribute(SketchPlugin_Arc::END_ID()),
336                                          ObjectPtr(),
337                                          false);
338     SketchPlugin_Tools::createConstraint(this,
339                                          PASSED_POINT_REF_ID(),
340                                          AttributePtr(),
341                                          anArcFeature->lastResult(),
342                                          true);
343   } else if(anArcType == ARC_TYPE_BY_TANGENT_EDGE()) {
344     // constraints for tangent arc
345     SketchPlugin_Tools::createConstraint(this,
346                                          TANGENT_POINT_ID(),
347                                          anArcFeature->attribute(SketchPlugin_Arc::START_ID()),
348                                          ObjectPtr(),
349                                          false);
350     FeaturePtr aTangent = sketch()->addFeature(SketchPlugin_ConstraintTangent::ID());
351     AttributeRefAttrPtr aRefAttrA = aTangent->refattr(SketchPlugin_Constraint::ENTITY_A());
352     AttributeRefAttrPtr aTgPntRefAttr = refattr(TANGENT_POINT_ID());
353     FeaturePtr aTgFeature = ModelAPI_Feature::feature(aTgPntRefAttr->attr()->owner());
354     aRefAttrA->setObject(aTgFeature->lastResult());
355     AttributeRefAttrPtr aRefAttrB = aTangent->refattr(SketchPlugin_Constraint::ENTITY_B());
356     aRefAttrB->setObject(anArcFeature->lastResult());
357     // constraint for end point
358     SketchPlugin_Tools::createConstraint(this,
359                                          END_POINT_REF_ID(),
360                                          anArcFeature->attribute(SketchPlugin_Arc::END_ID()),
361                                          ObjectPtr(),
362                                          false);
363   }
364
365   // message to init reentrant operation
366   static Events_ID anId = SketchPlugin_MacroArcReentrantMessage::eventId();
367   std::shared_ptr<SketchPlugin_MacroArcReentrantMessage> aMessage = std::shared_ptr
368     <SketchPlugin_MacroArcReentrantMessage>(new SketchPlugin_MacroArcReentrantMessage(anId, this));
369
370   std::string anEditArcType = string(EDIT_ARC_TYPE_ID())->value();
371   aMessage->setTypeOfCreation(!anEditArcType.empty() ? anEditArcType : anArcType);
372   aMessage->setCreatedFeature(anArcFeature);
373   Events_Loop::loop()->send(aMessage);
374 }
375
376 std::string SketchPlugin_MacroArc::processEvent(const std::shared_ptr<Events_Message>& theMessage)
377 {
378   std::string aFilledAttributeName;
379   std::shared_ptr<SketchPlugin_MacroArcReentrantMessage> aReentrantMessage =
380         std::dynamic_pointer_cast<SketchPlugin_MacroArcReentrantMessage>(theMessage);
381   if (aReentrantMessage.get()) {
382     FeaturePtr aCreatedFeature = aReentrantMessage->createdFeature();
383     std::string anArcType = aReentrantMessage->typeOfCreation();
384
385     string(ARC_TYPE())->setValue(anArcType);
386
387     aFilledAttributeName = ARC_TYPE();
388     if(anArcType == ARC_TYPE_BY_TANGENT_EDGE()) {
389       aFilledAttributeName = TANGENT_POINT_ID();
390       AttributeRefAttrPtr aRefAttr = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(
391                                                         attribute(aFilledAttributeName));
392       FeaturePtr aCreatedFeature = aReentrantMessage->createdFeature();
393       aRefAttr->setAttr(aCreatedFeature->attribute(SketchPlugin_Arc::END_ID()));
394     }
395     else {
396       ObjectPtr anObject = aReentrantMessage->selectedObject();
397       AttributePtr anAttribute = aReentrantMessage->selectedAttribute();
398       std::shared_ptr<GeomAPI_Pnt2d> aClickedPoint = aReentrantMessage->clickedPoint();
399
400       if (aClickedPoint.get() && (anObject.get() || anAttribute.get())) {
401         if (anArcType == ARC_TYPE_BY_CENTER_AND_POINTS() ||
402             anArcType == ARC_TYPE_BY_THREE_POINTS()) {
403           std::string aReferenceAttributeName;
404           if (anArcType == ARC_TYPE_BY_CENTER_AND_POINTS()) {
405             aFilledAttributeName = CENTER_POINT_ID();
406             aReferenceAttributeName = CENTER_POINT_REF_ID();
407           }
408           else {
409             aFilledAttributeName = START_POINT_2_ID();
410             aReferenceAttributeName = START_POINT_REF_ID();
411           }
412           // fill 2d point attribute
413           AttributePoint2DPtr aPointAttr = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
414                                                             attribute(aFilledAttributeName));
415           aPointAttr->setValue(aClickedPoint);
416           // fill reference attribute
417           AttributeRefAttrPtr aRefAttr = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(
418                                                           attribute(aReferenceAttributeName));
419           if (aRefAttr.get()) {
420             if (anAttribute.get()) {
421               if (!anAttribute->owner().get() || !anAttribute->owner()->data()->isValid()) {
422                 FeaturePtr aCreatedFeature = aReentrantMessage->createdFeature();
423                 if (aCreatedFeature.get()) {
424                   std::string anID = anAttribute->id();
425                   std::string anArcID;
426                   if (anID == END_POINT_1_ID() || anID == END_POINT_2_ID() ||
427                       anID == END_POINT_3_ID())
428                     anArcID = SketchPlugin_Arc::END_ID();
429                   else if (anID == START_POINT_1_ID() || anID ==START_POINT_2_ID())
430                     anArcID = SketchPlugin_Arc::START_ID();
431                   else if (anID == CENTER_POINT_ID())
432                     anArcID = SketchPlugin_Arc::CENTER_ID();
433                   anAttribute = aCreatedFeature->attribute(anArcID);
434                 }
435               }
436               aRefAttr->setAttr(anAttribute);
437             }
438             else if (anObject.get()) {
439               // if presentation of previous reentrant macro arc is used, the object is invalid,
440               // we should use result of previous feature of the message(Arc)
441               if (!anObject->data()->isValid()) {
442                 FeaturePtr aCreatedFeature = aReentrantMessage->createdFeature();
443                 if (aCreatedFeature.get())
444                   anObject = aCreatedFeature->lastResult();
445               }
446               aRefAttr->setObject(anObject);
447             }
448           }
449         }
450       }
451     }
452     Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
453   }
454   return aFilledAttributeName;
455 }
456
457 FeaturePtr SketchPlugin_MacroArc::createArcFeature()
458 {
459   FeaturePtr anArcFeature = sketch()->addFeature(SketchPlugin_Arc::ID());
460   std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
461       anArcFeature->attribute(SketchPlugin_Arc::CENTER_ID()))->setValue(myCenter);
462   std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
463       anArcFeature->attribute(SketchPlugin_Arc::START_ID()))->setValue(myStart);
464   std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
465       anArcFeature->attribute(SketchPlugin_Arc::END_ID()))->setValue(myEnd);
466   anArcFeature->boolean(SketchPlugin_Arc::REVERSED_ID())
467                 ->setValue(boolean(REVERSED_ID())->value());
468   anArcFeature->boolean(SketchPlugin_Arc::AUXILIARY_ID())
469                 ->setValue(boolean(AUXILIARY_ID())->value());
470   anArcFeature->execute();
471
472   return anArcFeature;
473 }
474
475 void SketchPlugin_MacroArc::fillByCenterAndTwoPassed()
476 {
477   AttributePoint2DPtr aCenterPointAttr =
478       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(attribute(CENTER_POINT_ID()));
479   if (!aCenterPointAttr->isInitialized())
480       return;
481
482   AttributePoint2DPtr aStartPointAttr =
483       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(attribute(START_POINT_1_ID()));
484   if (!aStartPointAttr->isInitialized())
485     return;
486
487   myCenter = aCenterPointAttr->pnt();
488   myStart = aStartPointAttr->pnt();
489   myEnd = myStart;
490
491   AttributePoint2DPtr anEndPointAttr =
492       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(attribute(END_POINT_1_ID()));
493   if (!anEndPointAttr->isInitialized())
494     return;
495
496   GeomAPI_Circ2d aCircleForArc(myCenter, myStart);
497
498   bool aWasBlocked = data()->blockSendAttributeUpdated(true);
499   // check the end point is referred to another feature
500   GeomShapePtr aRefShape;
501   AttributeRefAttrPtr aEndPointRefAttr = refattr(END_POINT_REF_ID());
502   if (aEndPointRefAttr && aEndPointRefAttr->isInitialized()) {
503     if (aEndPointRefAttr->isObject()) {
504       FeaturePtr aFeature = ModelAPI_Feature::feature(aEndPointRefAttr->object());
505       if (aFeature)
506         aRefShape = aFeature->lastResult()->shape();
507     }
508   }
509   if (aRefShape) {
510     // Calculate end point as an intersection between circle and another shape
511     intersectShapeAndCircle(aRefShape, aCircleForArc, sketch(), anEndPointAttr);
512   } else {
513     // End point should be a projection on circle.
514     projectPointOnCircle(anEndPointAttr, aCircleForArc);
515   }
516   data()->blockSendAttributeUpdated(aWasBlocked, false);
517   myEnd = anEndPointAttr->pnt();
518
519   // update the REVERSED flag
520   recalculateReversedFlagByEnd(aCircleForArc);
521 }
522
523 void SketchPlugin_MacroArc::recalculateReversedFlagByEnd(const GeomAPI_Circ2d& theCurrentCircular)
524 {
525   double aParameterNew = 0.0;
526   if(theCurrentCircular.parameter(myEnd, paramTolerance, aParameterNew)) {
527     if(myParamBefore <= PI / 2.0 && aParameterNew >= PI * 1.5) {
528       boolean(REVERSED_ID())->setValue(true);
529     } else if(myParamBefore >= PI * 1.5 && aParameterNew <= PI / 2.0) {
530       boolean(REVERSED_ID())->setValue(false);
531     }
532   }
533   myParamBefore = aParameterNew;
534 }
535
536 void SketchPlugin_MacroArc::fillByThreePassedPoints()
537 {
538   AttributePoint2DPtr aStartPointAttr =
539       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(attribute(START_POINT_2_ID()));
540   if (!aStartPointAttr->isInitialized())
541     return;
542
543   AttributePoint2DPtr anEndPointAttr =
544       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(attribute(END_POINT_2_ID()));
545   if (!anEndPointAttr->isInitialized())
546     return;
547
548   myStart = aStartPointAttr->pnt();
549   myEnd = anEndPointAttr->pnt();
550
551   AttributePoint2DPtr aPassedPointAttr =
552       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(attribute(PASSED_POINT_ID()));
553   if (aPassedPointAttr->isInitialized()) {
554     std::shared_ptr<GeomAPI_Pnt2d> aPassedPnt;
555     std::shared_ptr<GeomAPI_Shape> aTangentCurve;
556     SketchPlugin_Tools::convertRefAttrToPointOrTangentCurve(
557         refattr(PASSED_POINT_REF_ID()), aPassedPointAttr, aTangentCurve, aPassedPnt);
558
559     GeomAlgoAPI_Circ2dBuilder aCircBuilder(SketchPlugin_Sketch::plane(sketch()));
560     aCircBuilder.addPassingPoint(myStart);
561     aCircBuilder.addPassingPoint(myEnd);
562     if (aTangentCurve) {
563       aCircBuilder.addTangentCurve(aTangentCurve);
564       aCircBuilder.setClosestPoint(aPassedPointAttr->pnt());
565     } else
566       aCircBuilder.addPassingPoint(aPassedPnt);
567
568     std::shared_ptr<GeomAPI_Circ2d> aCircle = aCircBuilder.circle();
569     if (!aCircle)
570       return;
571     myCenter = aCircle->center();
572
573     aCircle = std::shared_ptr<GeomAPI_Circ2d>(new GeomAPI_Circ2d(myCenter, myStart));
574     recalculateReversedFlagByPassed(*aCircle);
575   } else
576     myCenter.reset(new GeomAPI_Pnt2d(myStart->xy()->added(myEnd->xy())->multiplied(0.5)));
577 }
578
579 void SketchPlugin_MacroArc::recalculateReversedFlagByPassed(
580     const GeomAPI_Circ2d& theCurrentCircular)
581 {
582   AttributePoint2DPtr aPassedAttr =
583       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(attribute(PASSED_POINT_ID()));
584   std::shared_ptr<GeomAPI_Pnt2d> aPassed = theCurrentCircular.project(aPassedAttr->pnt());
585
586   double aEndParam, aPassedParam;
587   theCurrentCircular.parameter(myEnd, paramTolerance, aEndParam);
588   theCurrentCircular.parameter(aPassed, paramTolerance, aPassedParam);
589
590   if(aPassedParam > aEndParam)
591     boolean(REVERSED_ID())->setValue(true);
592   else
593     boolean(REVERSED_ID())->setValue(false);
594
595   myParamBefore = aEndParam;
596 }
597
598 void SketchPlugin_MacroArc::fillByTangentEdge()
599 {
600   AttributeRefAttrPtr aTangentAttr = refattr(TANGENT_POINT_ID());
601   if (!aTangentAttr->isInitialized())
602     return;
603
604   AttributePoint2DPtr aTangentPointAttr =
605       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aTangentAttr->attr());
606   if (!aTangentPointAttr->isInitialized())
607     return;
608
609   AttributePoint2DPtr anEndPointAttr =
610       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(attribute(END_POINT_3_ID()));
611   if (!anEndPointAttr->isInitialized())
612     return;
613
614   myStart = aTangentPointAttr->pnt();
615   myEnd = anEndPointAttr->pnt();
616   if (myStart->isEqual(myEnd))
617     return;
618
619   // obtain a shape the tangent point belongs to
620   FeaturePtr aTangentFeature = ModelAPI_Feature::feature(aTangentPointAttr->owner());
621   std::shared_ptr<GeomAPI_Shape> aTangentShape = aTangentFeature->lastResult()->shape();
622
623   GeomAlgoAPI_Circ2dBuilder aCircBuilder(SketchPlugin_Sketch::plane(sketch()));
624   aCircBuilder.addPassingPoint(myStart);
625   aCircBuilder.addPassingPoint(myEnd);
626   aCircBuilder.addTangentCurve(aTangentShape);
627
628   std::shared_ptr<GeomAPI_Circ2d> aCircle = aCircBuilder.circle();
629   if (!aCircle)
630     return;
631   myCenter = aCircle->center();
632
633   // rebuild circle to set start point equal to zero parameter
634   aCircle = std::shared_ptr<GeomAPI_Circ2d>(new GeomAPI_Circ2d(myCenter, myStart));
635   recalculateReversedFlagByEnd(*aCircle);
636 }