]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchPlugin/SketchPlugin_Fillet.cpp
Salome HOME
Issue #2387: Sketcher conservation of constraints in fillet feature
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Fillet.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_Fillet.h"
22
23 #include "SketchPlugin_Arc.h"
24 #include "SketchPlugin_Line.h"
25 #include "SketchPlugin_Point.h"
26 #include "SketchPlugin_Sketch.h"
27 #include "SketchPlugin_ConstraintDistance.h"
28 #include "SketchPlugin_ConstraintEqual.h"
29 #include "SketchPlugin_ConstraintCoincidence.h"
30 #include "SketchPlugin_ConstraintLength.h"
31 #include "SketchPlugin_ConstraintMiddle.h"
32 #include "SketchPlugin_ConstraintTangent.h"
33 #include "SketchPlugin_ConstraintRadius.h"
34 #include "SketchPlugin_Tools.h"
35
36 #include <ModelAPI_AttributeDouble.h>
37 #include <ModelAPI_AttributeInteger.h>
38 #include <ModelAPI_AttributeRefAttr.h>
39 #include <ModelAPI_Data.h>
40 #include <ModelAPI_Events.h>
41 #include <ModelAPI_Session.h>
42 #include <ModelAPI_Tools.h>
43 #include <ModelAPI_Validator.h>
44
45 #include <GeomAlgoAPI_Circ2dBuilder.h>
46 #include <GeomAlgoAPI_EdgeBuilder.h>
47
48 #include <GeomAPI_Circ2d.h>
49 #include <GeomAPI_Dir2d.h>
50 #include <GeomAPI_Lin2d.h>
51 #include <GeomAPI_Pnt2d.h>
52 #include <GeomAPI_XY.h>
53
54 #include <GeomDataAPI_Point2D.h>
55
56 #include <Events_Loop.h>
57
58 #include <math.h>
59
60 const double tolerance = 1.e-7;
61 const double paramTolerance = 1.e-4;
62 const double PI = 3.141592653589793238463;
63
64 /// \brief Attract specified point on theNewArc to the attribute of theFeature
65 static void recalculateAttributes(FeaturePtr theNewArc, const std::string& theNewArcAttribute,
66   FeaturePtr theFeature, const std::string& theFeatureAttribute);
67
68
69 /// \brief Calculate radius of a fillet.
70 ///        It should not be greater than 1/3 of shortest edge length.
71 static double calculateFilletRadius(FeaturePtr theFilletFeatures[2]);
72
73 /// \brief Calculates center of fillet arc and coordinates of tangency points
74 static void calculateFilletCenter(FeaturePtr theFilletFeatures[2],
75                                   double theFilletRadius,
76                                   const std::shared_ptr<GeomAPI_Ax3>& theSketchPlane,
77                                   std::shared_ptr<GeomAPI_XY>& theCenter,
78                                   std::shared_ptr<GeomAPI_XY>& theTangentA,
79                                   std::shared_ptr<GeomAPI_XY>& theTangentB);
80
81 static std::set<FeaturePtr> findFeaturesToRemove(const FeaturePtr theFeature,
82                                                  const AttributePtr theAttribute);
83
84 SketchPlugin_Fillet::SketchPlugin_Fillet()
85 : myFilletCreated(false)
86 {
87 }
88
89 void SketchPlugin_Fillet::initAttributes()
90 {
91   data()->addAttribute(FILLET_POINT_ID(), ModelAPI_AttributeRefAttr::typeId());
92 }
93
94 void SketchPlugin_Fillet::execute()
95 {
96   // Wait all constraints being created, then send update events
97   static Events_ID anUpdateEvent = Events_Loop::eventByName(EVENT_OBJECT_UPDATED);
98   bool isUpdateFlushed = Events_Loop::loop()->isFlushed(anUpdateEvent);
99   if (isUpdateFlushed)
100     Events_Loop::loop()->setFlushed(anUpdateEvent, false);
101
102   // set flag here to avoid building Fillet presentation if "Redisplay" event appears
103   myFilletCreated = true;
104
105   // create feature for fillet arc
106   FeaturePtr aFilletArc = createFilletArc();
107
108   // collect features referred to the edges participating in fillet
109   AttributePoint2DPtr aFilletPoints[2];
110   int aFeatInd[2];
111   int anAttrInd[2];
112   std::set<FeaturePtr> aFeaturesToBeRemoved;
113   for (int i = 0; i < 2; ++i) {
114     bool isFirstIndex = (i == 0);
115     aFeatInd[i] = myIsReversed == isFirstIndex ? 1 : 0;
116     anAttrInd[i] = (myIsReversed == isFirstIndex ? 2 : 0) + (myIsNotInversed[aFeatInd[i]] ? 0 : 1);
117     aFilletPoints[i] = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
118         myBaseFeatures[aFeatInd[i]]->attribute(myFeatAttributes[anAttrInd[i]]));
119     std::set<FeaturePtr> aRemove =
120         findFeaturesToRemove(myBaseFeatures[aFeatInd[i]], aFilletPoints[i]);
121     aFeaturesToBeRemoved.insert(aRemove.begin(), aRemove.end());
122   }
123
124   // keep "distance" constraints and remove all other references
125   removeReferencesButKeepDistances(aFeaturesToBeRemoved, aFilletPoints);
126
127   // Update fillet edges.
128   recalculateAttributes(aFilletArc, SketchPlugin_Arc::START_ID(),
129                         myBaseFeatures[aFeatInd[0]], myFeatAttributes[anAttrInd[0]]);
130   recalculateAttributes(aFilletArc, SketchPlugin_Arc::END_ID(),
131                         myBaseFeatures[aFeatInd[1]], myFeatAttributes[anAttrInd[1]]);
132
133   FeaturePtr aConstraint;
134
135   // Create coincidence features.
136   aConstraint = SketchPlugin_Tools::createConstraintAttrAttr(sketch(),
137                     SketchPlugin_ConstraintCoincidence::ID(),
138                     aFilletArc->attribute(SketchPlugin_Arc::START_ID()),
139                     myBaseFeatures[aFeatInd[0]]->attribute(myFeatAttributes[anAttrInd[0]]));
140   ModelAPI_EventCreator::get()->sendUpdated(aConstraint, anUpdateEvent);
141   aConstraint = SketchPlugin_Tools::createConstraintAttrAttr(sketch(),
142                     SketchPlugin_ConstraintCoincidence::ID(),
143                     aFilletArc->attribute(SketchPlugin_Arc::END_ID()),
144                     myBaseFeatures[aFeatInd[1]]->attribute(myFeatAttributes[anAttrInd[1]]));
145   ModelAPI_EventCreator::get()->sendUpdated(aConstraint, anUpdateEvent);
146
147   // Create tangent features.
148   for (int i = 0; i < 2; i++) {
149     aConstraint = SketchPlugin_Tools::createConstraintObjectObject(sketch(),
150                       SketchPlugin_ConstraintTangent::ID(),
151                       aFilletArc->lastResult(),
152                       myBaseFeatures[i]->lastResult());
153     aConstraint->execute();
154     ModelAPI_EventCreator::get()->sendUpdated(aConstraint, anUpdateEvent);
155   }
156
157   // Send events to update the sub-features by the solver.
158   if (isUpdateFlushed)
159     Events_Loop::loop()->setFlushed(anUpdateEvent, true);
160 }
161
162 AISObjectPtr SketchPlugin_Fillet::getAISObject(AISObjectPtr thePrevious)
163 {
164   if(myFilletCreated) {
165     return AISObjectPtr();
166   }
167
168   SketchPlugin_Sketch* aSketch = sketch();
169   if(!aSketch) {
170     return AISObjectPtr();
171   }
172
173   if (!calculateFilletParameters())
174     return AISObjectPtr();
175
176   // Create arc for presentation.
177   std::shared_ptr<GeomAPI_Pnt> aCenterPnt(aSketch->to3D(myCenterXY->x(), myCenterXY->y()));
178   std::shared_ptr<GeomAPI_Pnt> aTangentPnt1(aSketch->to3D(myTangentXY1->x(),
179                                                           myTangentXY1->y()));
180   std::shared_ptr<GeomAPI_Pnt> aTangentPnt2(aSketch->to3D(myTangentXY2->x(),
181                                                           myTangentXY2->y()));
182   std::shared_ptr<GeomDataAPI_Dir> aNDir = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
183     aSketch->data()->attribute(SketchPlugin_Sketch::NORM_ID()));
184   std::shared_ptr<GeomAPI_Shape> anArcShape =
185       GeomAlgoAPI_EdgeBuilder::lineCircleArc(aCenterPnt, aTangentPnt1, aTangentPnt2, aNDir->dir());
186
187   AISObjectPtr anAISObject = thePrevious;
188   if(!anAISObject.get()) {
189     anAISObject = AISObjectPtr(new GeomAPI_AISObject);
190   }
191   anAISObject->createShape(anArcShape);
192   return anAISObject;
193 }
194
195 bool SketchPlugin_Fillet::calculateFilletParameters()
196 {
197   // Get fillet point.
198   AttributeRefAttrPtr aPointRefAttr = refattr(FILLET_POINT_ID());
199   if (!aPointRefAttr->isInitialized() || aPointRefAttr->isObject())
200     return false;
201   std::shared_ptr<GeomDataAPI_Point2D> aFilletPoint2D =
202     std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aPointRefAttr->attr());
203   if (!aFilletPoint2D.get())
204     return false;
205
206   std::set<FeaturePtr> aFilletFeatures =
207       SketchPlugin_Tools::findFeaturesCoincidentToPoint(aFilletPoint2D);
208   if (aFilletFeatures.size() != 2) {
209     setError("Error: Selected point does not have two suitable edges for fillet.");
210     return false;
211   }
212
213   std::set<FeaturePtr>::iterator aFIt = aFilletFeatures.begin();
214   myBaseFeatures[0] = *aFIt;
215   myBaseFeatures[1] = *(++aFIt);
216
217   std::shared_ptr<GeomAPI_Pnt2d> aFilletPnt2d = aFilletPoint2D->pnt();
218   double aRadius = calculateFilletRadius(myBaseFeatures);
219
220   // Calculate arc attributes.
221   static const int aNbFeatures = 2;
222   // First pair of points relate to first feature, second pair -  to second.
223   std::shared_ptr<GeomAPI_Pnt2d> aStartEndPnt[aNbFeatures * 2];
224   for (int i = 0; i < aNbFeatures; i++) {
225     std::string aStartAttr, aEndAttr;
226     if (myBaseFeatures[i]->getKind() == SketchPlugin_Line::ID()) {
227       aStartAttr = SketchPlugin_Line::START_ID();
228       aEndAttr = SketchPlugin_Line::END_ID();
229     } else if (myBaseFeatures[i]->getKind() == SketchPlugin_Arc::ID()) {
230       aStartAttr = SketchPlugin_Arc::START_ID();
231       aEndAttr = SketchPlugin_Arc::END_ID();
232     } else { // Wrong argument.
233       setError("Error: One of the points has wrong coincide feature");
234       return false;
235     }
236     myFeatAttributes[2*i] = aStartAttr;
237     aStartEndPnt[2*i] = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
238       myBaseFeatures[i]->attribute(aStartAttr))->pnt();
239     myFeatAttributes[2*i+1] = aEndAttr;
240     aStartEndPnt[2*i+1] = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
241       myBaseFeatures[i]->attribute(aEndAttr))->pnt();
242   }
243   for (int aFeatInd = 0; aFeatInd < aNbFeatures; aFeatInd++) {
244     for (int j = 0; j < 2; j++) // loop on start-end of each feature
245       if (aStartEndPnt[aFeatInd * aNbFeatures + j]->distance(aFilletPnt2d) < 1.e-10) {
246         myIsNotInversed[aFeatInd] = (j==0);
247         break;
248       }
249   }
250
251   std::shared_ptr<GeomAPI_Ax3> aSketchPlane = SketchPlugin_Sketch::plane(sketch());
252   calculateFilletCenter(myBaseFeatures, aRadius, aSketchPlane,
253                         myCenterXY, myTangentXY1, myTangentXY2);
254
255   // Tangent directions of the features in coincident point.
256   std::shared_ptr<GeomAPI_Dir2d> aTangentDir[aNbFeatures];
257   for (int i = 0; i < aNbFeatures; i++) {
258     std::shared_ptr<GeomAPI_XY> aDir;
259     if (myBaseFeatures[i]->getKind() == SketchPlugin_Line::ID()) {
260       aDir = aStartEndPnt[2*i+1]->xy()->decreased(aStartEndPnt[2*i]->xy());
261       if (!myIsNotInversed[i])
262         aDir = aDir->multiplied(-1.0);
263     } else if (myBaseFeatures[i]->getKind() == SketchPlugin_Arc::ID()) {
264       std::shared_ptr<GeomAPI_Pnt2d> aCenterPoint =
265         std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
266         myBaseFeatures[i]->attribute(SketchPlugin_Arc::CENTER_ID()))->pnt();
267       aDir = myIsNotInversed[i] ? aStartEndPnt[2*i]->xy() : aStartEndPnt[2*i+1]->xy();
268       aDir = aDir->decreased(aCenterPoint->xy());
269
270       double x = aDir->x();
271       double y = aDir->y();
272       aDir->setX(-y);
273       aDir->setY(x);
274       if (myIsNotInversed[i] ==
275           std::dynamic_pointer_cast<SketchPlugin_Arc>(myBaseFeatures[i])->isReversed())
276         aDir = aDir->multiplied(-1.0);
277     }
278     aTangentDir[i] = std::shared_ptr<GeomAPI_Dir2d>(new GeomAPI_Dir2d(aDir));
279   }
280
281   // By default, the start point of fillet arc is connected to FeatureA,
282   // and the end point - to FeatureB. But when the angle between TangentDirA and
283   // TangentDirB greater 180 degree, the sequaence of features need to be reversed.
284   double cosBA = aTangentDir[0]->cross(aTangentDir[1]); // cos(B-A),
285   // where A and B - angles between corresponding tanget direction and the X axis
286   myIsReversed = cosBA > 0.0;
287
288   if(myIsReversed) {
289     std::shared_ptr<GeomAPI_XY> aTmp = myTangentXY1;
290     myTangentXY1 = myTangentXY2;
291     myTangentXY2 = aTmp;
292   }
293   return true;
294 }
295
296 FeaturePtr SketchPlugin_Fillet::createFilletArc()
297 {
298   // Calculate Fillet parameters if does not yet
299   if (!myBaseFeatures[0] || !myBaseFeatures[1])
300     calculateFilletParameters();
301
302   // Create arc feature.
303   FeaturePtr aFilletArc = sketch()->addFeature(SketchPlugin_Arc::ID());
304
305   // Set arc attributes.
306   bool aWasBlocked = aFilletArc->data()->blockSendAttributeUpdated(true);
307   std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
308       aFilletArc->attribute(SketchPlugin_Arc::CENTER_ID()))->setValue(myCenterXY->x(),
309                                                                       myCenterXY->y());
310   std::shared_ptr<GeomDataAPI_Point2D> aStartPoint =
311       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
312           aFilletArc->attribute(SketchPlugin_Arc::START_ID()));
313   std::shared_ptr<GeomDataAPI_Point2D> aEndPoint =
314       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
315           aFilletArc->attribute(SketchPlugin_Arc::END_ID()));
316   if(aStartPoint->isInitialized() && aEndPoint->isInitialized()
317       && (aStartPoint->pnt()->xy()->distance(myTangentXY1) > tolerance
318       || aEndPoint->pnt()->xy()->distance(myTangentXY2) > tolerance)) {
319     std::dynamic_pointer_cast<SketchPlugin_Arc>(aFilletArc)->setReversed(false);
320   }
321   aStartPoint->setValue(myTangentXY1->x(), myTangentXY1->y());
322   aEndPoint->setValue(myTangentXY2->x(), myTangentXY2->y());
323   aFilletArc->data()->blockSendAttributeUpdated(aWasBlocked);
324   aFilletArc->execute();
325
326   return aFilletArc;
327 }
328
329 FeaturePtr SketchPlugin_Fillet::createFilletApex(const GeomPnt2dPtr& theCoordinates)
330 {
331   FeaturePtr anApex = sketch()->addFeature(SketchPlugin_Point::ID());
332   AttributePoint2DPtr aCoord = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
333       anApex->attribute(SketchPlugin_Point::COORD_ID()));
334   aCoord->setValue(theCoordinates);
335   anApex->boolean(SketchPlugin_Point::AUXILIARY_ID())->setValue(true);
336
337   // additional coincidence constraints
338   static Events_ID anUpdateEvent = Events_Loop::eventByName(EVENT_OBJECT_UPDATED);
339   FeaturePtr aConstraint;
340   for (int i = 0; i < 2; i++) {
341     aConstraint = SketchPlugin_Tools::createConstraintAttrObject(sketch(),
342                       SketchPlugin_ConstraintCoincidence::ID(),
343                       aCoord,
344                       myBaseFeatures[i]->lastResult());
345     aConstraint->execute();
346     ModelAPI_EventCreator::get()->sendUpdated(aConstraint, anUpdateEvent);
347   }
348
349   return anApex;
350 }
351
352 struct Length {
353   AttributePtr myPoints[2];
354   std::string myValueText;
355   double myValueDouble;
356   GeomPnt2dPtr myFlyoutPoint;
357   int myLocationType;
358 };
359
360 void SketchPlugin_Fillet::removeReferencesButKeepDistances(
361     std::set<FeaturePtr>& theFeaturesToRemove,
362     const AttributePoint2DPtr theFilletPoints[2])
363 {
364   FeaturePtr aFilletApex;
365   std::list<Length> aLengthToDistance;
366
367   std::set<FeaturePtr>::iterator aFeat = theFeaturesToRemove.begin();
368   while (aFeat != theFeaturesToRemove.end()) {
369     std::shared_ptr<SketchPlugin_ConstraintDistance> aDistance =
370         std::dynamic_pointer_cast<SketchPlugin_ConstraintDistance>(*aFeat);
371     if (aDistance) {
372       if (!aFilletApex)
373         aFilletApex = createFilletApex(theFilletPoints[0]->pnt());
374       // update attributes of distance constraints
375       bool isUpdated = false;
376       for (int attrInd = 0; attrInd < CONSTRAINT_ATTR_SIZE && !isUpdated; ++attrInd) {
377         AttributeRefAttrPtr aRefAttr =
378             aDistance->refattr(SketchPlugin_Constraint::ATTRIBUTE(attrInd));
379         if (aRefAttr && !aRefAttr->isObject() &&
380            (aRefAttr->attr() == theFilletPoints[0] || aRefAttr->attr() == theFilletPoints[1])) {
381           aRefAttr->setAttr(aFilletApex->attribute(SketchPlugin_Point::COORD_ID()));
382           isUpdated = true;
383         }
384       }
385       // avoid distance from removing if it is updated
386       std::set<FeaturePtr>::iterator aKeepIt = aFeat++;
387       if (isUpdated)
388         theFeaturesToRemove.erase(aKeepIt);
389
390     } else {
391       std::shared_ptr<SketchPlugin_ConstraintLength> aLength =
392           std::dynamic_pointer_cast<SketchPlugin_ConstraintLength>(*aFeat);
393       if (aLength) {
394         if (!aFilletApex)
395           aFilletApex = createFilletApex(theFilletPoints[0]->pnt());
396         // remove Length, but create new distance constraint
397         AttributeRefAttrPtr aRefAttr =
398           aLength->refattr(SketchPlugin_Constraint::ENTITY_A());
399         FeaturePtr aLine = ModelAPI_Feature::feature(aRefAttr->object());
400         if (aLine) {
401           aLengthToDistance.push_back(Length());
402           Length& aNewLength = aLengthToDistance.back();
403           // main attrbutes
404           for (int i = 0; i < 2; ++i) {
405             AttributePtr anAttr = aLine->attribute(
406                 i == 0 ? SketchPlugin_Line::START_ID() : SketchPlugin_Line::END_ID());
407             if (anAttr == theFilletPoints[0] || anAttr == theFilletPoints[1])
408               aNewLength.myPoints[i] = aFilletApex->attribute(SketchPlugin_Point::COORD_ID());
409             else
410               aNewLength.myPoints[i] = anAttr;
411           }
412           // value
413           AttributeDoublePtr aValue = aLength->real(SketchPlugin_Constraint::VALUE());
414           aNewLength.myValueDouble = aValue->value();
415           aNewLength.myValueText = aValue->text();
416           // auxiliary attributes
417           AttributePoint2DPtr aFlyoutAttr = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
418               aLength->attribute(SketchPlugin_ConstraintLength::FLYOUT_VALUE_PNT()));
419           if (aFlyoutAttr && aFlyoutAttr->isInitialized())
420             aNewLength.myFlyoutPoint = SketchPlugin_Tools::flyoutPointCoordinates(aLength);
421           AttributeIntegerPtr aLocationAttr =
422               aLength->integer(SketchPlugin_ConstraintLength::LOCATION_TYPE_ID());
423           if (aLocationAttr && aLocationAttr->isInitialized())
424             aNewLength.myLocationType = aLocationAttr->value();
425           else
426             aNewLength.myLocationType = -1;
427         }
428       }
429
430       ++aFeat;
431     }
432   }
433
434   // remove references
435   ModelAPI_Tools::removeFeaturesAndReferences(theFeaturesToRemove);
436   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_DELETED));
437
438   // restore Length constraints as point-point distances
439   FeaturePtr aConstraint;
440   std::list<Length>::iterator anIt = aLengthToDistance.begin();
441   for (; anIt != aLengthToDistance.end(); ++anIt) {
442     aConstraint = SketchPlugin_Tools::createConstraintAttrAttr(sketch(),
443         SketchPlugin_ConstraintDistance::ID(), anIt->myPoints[0], anIt->myPoints[1]);
444     // set value
445     AttributeDoublePtr aValue = aConstraint->real(SketchPlugin_Constraint::VALUE());
446     if (anIt->myValueText.empty())
447       aValue->setValue(anIt->myValueDouble);
448     else
449       aValue->setText(anIt->myValueText);
450     // set flyout point if exists
451     if (anIt->myFlyoutPoint) {
452       AttributePoint2DPtr aFlyoutAttr = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
453           aConstraint->attribute(SketchPlugin_ConstraintDistance::FLYOUT_VALUE_PNT()));
454       aFlyoutAttr->setValue(anIt->myFlyoutPoint);
455     }
456     // set location type if initialized
457     if (anIt->myLocationType >= 0) {
458       AttributeIntegerPtr aLocationType =
459           aConstraint->integer(SketchPlugin_ConstraintDistance::LOCATION_TYPE_ID());
460       aLocationType->setValue(anIt->myLocationType);
461     }
462     aConstraint->execute();
463     ModelAPI_EventCreator::get()->sendUpdated(aConstraint,
464         Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
465   }
466 }
467
468 // =========   Auxiliary functions   =================
469 void recalculateAttributes(FeaturePtr theNewArc,  const std::string& theNewArcAttribute,
470                            FeaturePtr theFeature, const std::string& theFeatureAttribute)
471 {
472   std::shared_ptr<GeomAPI_Pnt2d> anArcPoint = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
473       theNewArc->attribute(theNewArcAttribute))->pnt();
474   std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
475       theFeature->attribute(theFeatureAttribute))->setValue(anArcPoint->x(), anArcPoint->y());
476 }
477
478 static std::shared_ptr<GeomAPI_Pnt2d> toPoint(const AttributePtr& theAttribute)
479 {
480   std::shared_ptr<GeomAPI_Pnt2d> aPoint;
481   AttributePoint2DPtr aPointAttr = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(theAttribute);
482   if (aPointAttr)
483     aPoint = aPointAttr->pnt();
484   return aPoint;
485 }
486
487 static std::shared_ptr<GeomAPI_Lin2d> toLine(const FeaturePtr& theFeature)
488 {
489   std::shared_ptr<GeomAPI_Lin2d> aLine;
490   if (theFeature->getKind() == SketchPlugin_Line::ID()) {
491     std::shared_ptr<GeomAPI_Pnt2d> aStart =
492         toPoint( theFeature->attribute(SketchPlugin_Line::START_ID()) );
493     std::shared_ptr<GeomAPI_Pnt2d> aEnd =
494         toPoint( theFeature->attribute(SketchPlugin_Line::END_ID()) );
495     aLine = std::shared_ptr<GeomAPI_Lin2d>(new GeomAPI_Lin2d(aStart, aEnd));
496   }
497   return aLine;
498 }
499
500 static std::shared_ptr<GeomAPI_Circ2d> toCircle(const FeaturePtr& theFeature)
501 {
502   std::shared_ptr<GeomAPI_Circ2d> aCircle;
503   if (theFeature->getKind() == SketchPlugin_Arc::ID()) {
504     std::shared_ptr<GeomAPI_Pnt2d> aCenter =
505         toPoint( theFeature->attribute(SketchPlugin_Arc::CENTER_ID()) );
506     std::shared_ptr<GeomAPI_Pnt2d> aStart =
507         toPoint( theFeature->attribute(SketchPlugin_Arc::START_ID()) );
508     aCircle = std::shared_ptr<GeomAPI_Circ2d>(new GeomAPI_Circ2d(aCenter, aStart));
509   }
510   return aCircle;
511 }
512
513
514 void calculateFilletCenter(FeaturePtr theFilletFeatures[2],
515                            double theFilletRadius,
516                            const std::shared_ptr<GeomAPI_Ax3>& theSketchPlane,
517                            std::shared_ptr<GeomAPI_XY>& theCenter,
518                            std::shared_ptr<GeomAPI_XY>& theTangentA,
519                            std::shared_ptr<GeomAPI_XY>& theTangentB)
520 {
521   GeomShapePtr aShapeA = theFilletFeatures[0]->lastResult()->shape();
522   GeomShapePtr aShapeB = theFilletFeatures[1]->lastResult()->shape();
523
524   GeomAlgoAPI_Circ2dBuilder aCircBuilder(theSketchPlane);
525   aCircBuilder.addTangentCurve(aShapeA);
526   aCircBuilder.addTangentCurve(aShapeB);
527   aCircBuilder.setRadius(theFilletRadius);
528
529   std::shared_ptr<GeomAPI_Circ2d> aFilletCircle = aCircBuilder.circle();
530   if (!aFilletCircle)
531     return;
532
533   theCenter = aFilletCircle->center()->xy();
534   // tangent points
535   std::shared_ptr<GeomAPI_Pnt2d> aTgPoints[2];
536   for (int i = 0; i < 2; ++i) {
537     std::shared_ptr<GeomAPI_Circ2d> aCircle = toCircle(theFilletFeatures[i]);
538     if (aCircle)
539       aTgPoints[i] = aCircle->project(aFilletCircle->center());
540     else {
541       std::shared_ptr<GeomAPI_Lin2d> aLine = toLine(theFilletFeatures[i]);
542       if (aLine)
543         aTgPoints[i] = aLine->project(aFilletCircle->center());
544     }
545   }
546   theTangentA = aTgPoints[0]->xy();
547   theTangentB = aTgPoints[1]->xy();
548 }
549
550 double calculateFilletRadius(FeaturePtr theFilletFeatures[2])
551 {
552   double aLengths[2] = { 0, 0 };
553   for (int i = 0; i < 2; ++i) {
554     GeomShapePtr aShape = theFilletFeatures[i]->lastResult()->shape();
555     std::shared_ptr<GeomAPI_Edge> anEdge = std::dynamic_pointer_cast<GeomAPI_Edge>(aShape);
556     if (anEdge)
557       aLengths[i] = anEdge->length();
558   }
559   return std::min(aLengths[0], aLengths[1]) / 6.0;
560 }
561
562 std::set<FeaturePtr> findFeaturesToRemove(const FeaturePtr theFeature,
563                                           const AttributePtr theAttribute) {
564   std::set<FeaturePtr> aFeaturesToBeRemoved;
565   std::set<AttributePtr> aRefs = theFeature->data()->refsToMe();
566   std::list<ResultPtr> aResults = theFeature->results();
567   for(std::list<ResultPtr>::const_iterator aResultsIt = aResults.cbegin();
568       aResultsIt != aResults.cend();
569       ++aResultsIt) {
570     ResultPtr aResult = *aResultsIt;
571     std::set<AttributePtr> aResultRefs = aResult->data()->refsToMe();
572     aRefs.insert(aResultRefs.begin(), aResultRefs.end());
573   }
574   for(std::set<AttributePtr>::const_iterator anIt = aRefs.cbegin();
575     anIt != aRefs.cend();
576     ++anIt) {
577     std::shared_ptr<ModelAPI_Attribute> anAttr = (*anIt);
578     FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(anAttr->owner());
579     if(aFeature->getKind() == SketchPlugin_Fillet::ID()) {
580       continue;
581     }
582     if(aFeature->getKind() == SketchPlugin_ConstraintLength::ID()
583         || aFeature->getKind() == SketchPlugin_ConstraintEqual::ID()
584         || aFeature->getKind() == SketchPlugin_ConstraintMiddle::ID()) {
585       aFeaturesToBeRemoved.insert(aFeature);
586     } else {
587       std::list<AttributePtr> anAttrs =
588           aFeature->data()->attributes(ModelAPI_AttributeRefAttr::typeId());
589       for(std::list<AttributePtr>::const_iterator aRefAttrsIt = anAttrs.cbegin();
590           aRefAttrsIt != anAttrs.cend();
591           ++aRefAttrsIt) {
592         AttributeRefAttrPtr anAttrRefAttr =
593           std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(*aRefAttrsIt);
594         if(anAttrRefAttr.get() && anAttrRefAttr->attr() == theAttribute) {
595           aFeaturesToBeRemoved.insert(aFeature);
596         }
597       }
598     }
599   }
600   return aFeaturesToBeRemoved;
601 }