Salome HOME
Issue #393: Make fixed feature movable
[modules/shaper.git] / src / SketchSolver / SketchSolver_Group.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:    SketchSolver_Group.cpp
4 // Created: 27 May 2014
5 // Author:  Artem ZHIDKOV
6
7 #include "SketchSolver_Group.h"
8
9 #include <SketchSolver_Builder.h>
10 #include <SketchSolver_Constraint.h>
11 #include <SketchSolver_ConstraintCoincidence.h>
12 #include <SketchSolver_Error.h>
13
14 #include <Events_Error.h>
15 #include <Events_Loop.h>
16 #include <GeomAPI_XY.h>
17 #include <GeomAPI_Dir2d.h>
18 #include <GeomAPI_Pnt2d.h>
19 #include <GeomDataAPI_Dir.h>
20 #include <GeomDataAPI_Point.h>
21 #include <GeomDataAPI_Point2D.h>
22 #include <ModelAPI_AttributeDouble.h>
23 #include <ModelAPI_Document.h>
24 #include <ModelAPI_Events.h>
25 #include <ModelAPI_ResultConstruction.h>
26
27 #include <SketchPlugin_Constraint.h>
28 #include <SketchPlugin_ConstraintEqual.h>
29 #include <SketchPlugin_ConstraintFillet.h>
30 #include <SketchPlugin_ConstraintLength.h>
31 #include <SketchPlugin_ConstraintCoincidence.h>
32 #include <SketchPlugin_ConstraintMirror.h>
33 #include <SketchPlugin_ConstraintRigid.h>
34 #include <SketchPlugin_ConstraintTangent.h>
35 #include <SketchPlugin_Feature.h>
36
37 #include <SketchPlugin_Arc.h>
38 #include <SketchPlugin_Circle.h>
39 #include <SketchPlugin_Line.h>
40 #include <SketchPlugin_Point.h>
41 #include <SketchPlugin_Sketch.h>
42
43 #include <math.h>
44 #include <assert.h>
45
46
47 /// \brief This class is used to give unique index to the groups
48 class GroupIndexer
49 {
50 public:
51   /// \brief Return vacant index
52   static Slvs_hGroup NEW_GROUP() { return ++myGroupIndex; }
53   /// \brief Removes the index
54   static void REMOVE_GROUP(const Slvs_hGroup& theIndex) {
55     if (myGroupIndex == theIndex)
56       myGroupIndex--;
57   }
58
59 private:
60   GroupIndexer() {};
61
62   static Slvs_hGroup myGroupIndex; ///< index of the group
63 };
64
65 Slvs_hGroup GroupIndexer::myGroupIndex = 0;
66
67
68
69 // ========================================================
70 // =========  SketchSolver_Group  ===============
71 // ========================================================
72
73 SketchSolver_Group::SketchSolver_Group(
74     std::shared_ptr<ModelAPI_CompositeFeature> theWorkplane)
75     : myID(GroupIndexer::NEW_GROUP())
76 {
77   // Initialize workplane
78   myWorkplaneID = SLVS_E_UNKNOWN;
79 #ifndef NDEBUG
80   assert(addWorkplane(theWorkplane));
81 #else
82   addWorkplane(theWorkplane);
83 #endif
84 }
85
86 SketchSolver_Group::~SketchSolver_Group()
87 {
88   myConstraints.clear();
89   GroupIndexer::REMOVE_GROUP(myID);
90 }
91
92 // ============================================================================
93 //  Function: isBaseWorkplane
94 //  Class:    SketchSolver_Group
95 //  Purpose:  verify the group is based on the given workplane
96 // ============================================================================
97 bool SketchSolver_Group::isBaseWorkplane(CompositeFeaturePtr theWorkplane) const
98 {
99   return theWorkplane == mySketch;
100 }
101
102 // ============================================================================
103 //  Function: isInteract
104 //  Class:    SketchSolver_Group
105 //  Purpose:  verify are there any entities in the group used by given constraint
106 // ============================================================================
107 bool SketchSolver_Group::isInteract(
108     std::shared_ptr<SketchPlugin_Feature> theFeature) const
109 {
110   // Empty group interacts with everything
111   if (isEmpty()) return true;
112   ConstraintPtr aConstraint = std::dynamic_pointer_cast<SketchPlugin_Constraint>(theFeature);
113   if (aConstraint)
114     return myFeatureStorage->isInteract(aConstraint);
115   return myFeatureStorage->isInteract(std::dynamic_pointer_cast<ModelAPI_Feature>(theFeature));
116 }
117
118 // ============================================================================
119 //  Function: getFeatureId
120 //  Class:    SketchSolver_Group
121 //  Purpose:  Find the identifier of the feature, if it already exists in the group
122 // ============================================================================
123 Slvs_hEntity SketchSolver_Group::getFeatureId(FeaturePtr theFeature) const
124 {
125   Slvs_hEntity aResult = SLVS_E_UNKNOWN;
126   if (!myFeatureStorage)
127     return aResult;
128   std::set<ConstraintPtr> aConstraints = myFeatureStorage->getConstraints(theFeature);
129   if (aConstraints.empty())
130     return aResult;
131   std::set<ConstraintPtr>::iterator aConstrIter = aConstraints.begin();
132   for (; aConstrIter != aConstraints.end(); aConstrIter++) {
133     ConstraintConstraintMap::const_iterator aCIter = myConstraints.find(*aConstrIter);
134     if (aCIter == myConstraints.end())
135       continue;
136     aResult = aCIter->second->getId(theFeature);
137     if (aResult != SLVS_E_UNKNOWN)
138       return aResult;
139   }
140   return SLVS_E_UNKNOWN;
141 }
142
143 // ============================================================================
144 //  Function: getAttributeId
145 //  Class:    SketchSolver_Group
146 //  Purpose:  Find the identifier of the attribute, if it already exists in the group
147 // ============================================================================
148 Slvs_hEntity SketchSolver_Group::getAttributeId(AttributePtr theAttribute) const
149 {
150   Slvs_hEntity aResult = SLVS_E_UNKNOWN;
151   if (!myFeatureStorage)
152     return aResult;
153   std::set<ConstraintPtr> aConstraints = myFeatureStorage->getConstraints(theAttribute);
154   if (aConstraints.empty())
155     return aResult;
156   std::set<ConstraintPtr>::iterator aConstrIter = aConstraints.begin();
157   for (; aConstrIter != aConstraints.end(); aConstrIter++) {
158     ConstraintConstraintMap::const_iterator aCIter = myConstraints.find(*aConstrIter);
159     if (aCIter == myConstraints.end())
160       continue;
161     aResult = aCIter->second->getId(theAttribute);
162     if (aResult != SLVS_E_UNKNOWN)
163       return aResult;
164   }
165   return SLVS_E_UNKNOWN;
166 }
167
168 // ============================================================================
169 //  Function: changeConstraint
170 //  Class:    SketchSolver_Group
171 //  Purpose:  create/update the constraint in the group
172 // ============================================================================
173 bool SketchSolver_Group::changeConstraint(
174     std::shared_ptr<SketchPlugin_Constraint> theConstraint)
175 {
176   // There is no workplane yet, something wrong
177   if (myWorkplaneID == SLVS_E_UNKNOWN)
178     return false;
179
180   if (!theConstraint)
181     return false;
182
183   if (myConstraints.find(theConstraint) == myConstraints.end()) {
184     // Add constraint to the current group
185     SolverConstraintPtr aConstraint =
186         SketchSolver_Builder::getInstance()->createConstraint(theConstraint);
187     if (!aConstraint)
188       return false;
189     aConstraint->setGroup(this);
190     aConstraint->setStorage(myStorage);
191     if (!aConstraint->error().empty()) {
192       if (aConstraint->error() == SketchSolver_Error::NOT_INITIALIZED())
193         return false; // some attribute are not initialized yet, don't show message
194       Events_Error::send(aConstraint->error(), this);
195     }
196
197     // Additional verification of coincidence of several points
198     if (theConstraint->getKind() == SketchPlugin_ConstraintCoincidence::ID()) {
199       ConstraintConstraintMap::iterator aCIter = myConstraints.begin();
200       for (; aCIter != myConstraints.end(); aCIter++) {
201         std::shared_ptr<SketchSolver_ConstraintCoincidence> aCoincidence =
202           std::dynamic_pointer_cast<SketchSolver_ConstraintCoincidence>(aCIter->second);
203         if (!aCoincidence)
204           continue;
205         std::shared_ptr<SketchSolver_ConstraintCoincidence> aCoinc2 =
206           std::dynamic_pointer_cast<SketchSolver_ConstraintCoincidence>(aConstraint);
207         if (aCoincidence != aCoinc2 && aCoincidence->isCoincide(aCoinc2)) {
208           aCoincidence->attach(aCoinc2);
209           aConstraint = aCoincidence;
210         }
211       }
212     }
213     myConstraints[theConstraint] = aConstraint;
214   }
215   else
216     myConstraints[theConstraint]->update();
217
218   // Fix base features for fillet
219   if (theConstraint->getKind() == SketchPlugin_ConstraintFillet::ID()) {
220     std::list<AttributePtr> anAttrList =
221         theConstraint->data()->attributes(ModelAPI_AttributeRefAttr::typeId());
222     std::list<AttributePtr>::iterator anAttrIter = anAttrList.begin();
223     for (; anAttrIter != anAttrList.end(); anAttrIter++) {
224       AttributeRefAttrPtr aRefAttr =
225           std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(*anAttrIter);
226       if (!aRefAttr || !aRefAttr->isObject())
227         continue;
228       FeaturePtr aFeature = ModelAPI_Feature::feature(aRefAttr->object());
229       SolverConstraintPtr aConstraint =
230           SketchSolver_Builder::getInstance()->createRigidConstraint(aFeature);
231       if (!aConstraint)
232         continue;
233       aConstraint->setGroup(this);
234       aConstraint->setStorage(myStorage);
235       setTemporary(aConstraint);
236     }
237   }
238   //// Fix base features for mirror
239   //if (theConstraint->getKind() == SketchPlugin_ConstraintMirror::ID()) {
240   //  AttributeRefListPtr aRefList = std::dynamic_pointer_cast<ModelAPI_AttributeRefList>(
241   //      theConstraint->attribute(SketchPlugin_ConstraintMirror::ENTITY_B()));
242   //  fixFeaturesList(aRefList);
243   //}
244
245   if (!myFeatureStorage)
246     myFeatureStorage = FeatureStoragePtr(new SketchSolver_FeatureStorage);
247   myFeatureStorage->changeConstraint(theConstraint);
248
249   return true;
250 }
251
252
253 bool SketchSolver_Group::updateFeature(std::shared_ptr<SketchPlugin_Feature> theFeature)
254 {
255   std::set<ConstraintPtr> aConstraints =
256       myFeatureStorage->getConstraints(std::dynamic_pointer_cast<ModelAPI_Feature>(theFeature));
257   if (aConstraints.empty())
258     return false;
259   std::set<ConstraintPtr>::iterator aCIter = aConstraints.begin();
260   for (; aCIter != aConstraints.end(); aCIter++) {
261     ConstraintConstraintMap::iterator aSolConIter = myConstraints.find(*aCIter);
262     if (aSolConIter == myConstraints.end())
263       continue;
264     myFeatureStorage->changeFeature(theFeature, aSolConIter->first);
265     aSolConIter->second->addFeature(theFeature);
266     aSolConIter->second->update();
267   }
268   return true;
269 }
270
271 void SketchSolver_Group::moveFeature(std::shared_ptr<SketchPlugin_Feature> theFeature)
272 {
273   updateFeature(theFeature);
274   // Temporary rigid constraint
275   SolverConstraintPtr aConstraint =
276       SketchSolver_Builder::getInstance()->createRigidConstraint(theFeature);
277   if (!aConstraint)
278     return;
279   aConstraint->setGroup(this);
280   aConstraint->setStorage(myStorage);
281   if (aConstraint->error().empty())
282     setTemporary(aConstraint);
283 }
284
285 // ============================================================================
286 //  Function: fixFeaturesList
287 //  Class:    SketchSolver_Group
288 //  Purpose:  Apply temporary rigid constraints for the list of features
289 // ============================================================================
290 void SketchSolver_Group::fixFeaturesList(AttributeRefListPtr theList)
291 {
292   std::list<ObjectPtr> aList = theList->list();
293   std::list<ObjectPtr>::iterator anIt = aList.begin();
294   std::list<FeaturePtr> aFeatures;
295   // Sort features, at begining there are features used by Equal constraint
296   for (; anIt != aList.end(); anIt++) {
297     if (!(*anIt))
298       continue;
299     FeaturePtr aFeature = ModelAPI_Feature::feature(*anIt);
300     std::set<ConstraintPtr> aConstraints = myFeatureStorage->getConstraints(aFeature);
301     std::set<ConstraintPtr>::iterator aCIter = aConstraints.begin();
302     for (; aCIter != aConstraints.end(); aCIter++)
303       if ((*aCIter)->getKind() == SketchPlugin_ConstraintEqual::ID())
304         break;
305     if (aCIter != aConstraints.end())
306       aFeatures.push_front(aFeature);
307     else
308       aFeatures.push_back(aFeature);
309   }
310
311   std::list<FeaturePtr>::iterator aFeatIter = aFeatures.begin();
312   for (; aFeatIter != aFeatures.end(); aFeatIter++) {
313     SolverConstraintPtr aConstraint =
314         SketchSolver_Builder::getInstance()->createRigidConstraint(*aFeatIter);
315     if (!aConstraint)
316       continue;
317     aConstraint->setGroup(this);
318     aConstraint->setStorage(myStorage);
319     setTemporary(aConstraint);
320   }
321 }
322
323 // ============================================================================
324 //  Function: addWorkplane
325 //  Class:    SketchSolver_Group
326 //  Purpose:  create workplane for the group
327 // ============================================================================
328 bool SketchSolver_Group::addWorkplane(CompositeFeaturePtr theSketch)
329 {
330   if (myWorkplaneID != SLVS_E_UNKNOWN || theSketch->getKind() != SketchPlugin_Sketch::ID())
331     return false;  // the workplane already exists or the function parameter is not Sketch
332
333   mySketch = theSketch;
334   updateWorkplane();
335   return true;
336 }
337
338 // ============================================================================
339 //  Function: updateWorkplane
340 //  Class:    SketchSolver_Group
341 //  Purpose:  update parameters of workplane
342 // ============================================================================
343 bool SketchSolver_Group::updateWorkplane()
344 {
345   if (!myStorage) // Create storage if not exists
346     myStorage = StoragePtr(new SketchSolver_Storage);
347   SketchSolver_Builder* aBuilder = SketchSolver_Builder::getInstance();
348
349   std::vector<Slvs_Entity> anEntities;
350   std::vector<Slvs_Param> aParams;
351   if (!aBuilder->createWorkplane(mySketch, anEntities, aParams))
352     return false;
353
354   if (myWorkplaneID == SLVS_E_UNKNOWN) {
355     myWorkplaneID = anEntities.back().h;
356     // Add new workplane elements
357     std::vector<Slvs_Param>::iterator aParIter = aParams.begin();
358     for (; aParIter != aParams.end(); aParIter++) {
359       aParIter->h = SLVS_E_UNKNOWN; // the ID should be generated by storage
360       aParIter->group = myID;
361       aParIter->h = myStorage->addParameter(*aParIter);
362     }
363     std::vector<Slvs_Entity>::iterator anEntIter = anEntities.begin();
364     for (; anEntIter != anEntities.end(); anEntIter++) {
365       anEntIter->h = SLVS_E_UNKNOWN; // the ID should be generated by storage
366       anEntIter->group = myID;
367       anEntIter->wrkpl = myWorkplaneID;
368       for (int i = 0; i < 4; i++)
369         if (anEntIter->param[i] != SLVS_E_UNKNOWN)
370           anEntIter->param[i] = aParams[anEntIter->param[i]-1].h;
371       for (int i = 0; i < 4; i++)
372         if (anEntIter->point[i] != SLVS_E_UNKNOWN)
373           anEntIter->point[i] = anEntities[anEntIter->point[i]-1].h;
374       anEntIter->h = myStorage->addEntity(*anEntIter);
375     }
376   } else {
377     // Update existent workplane
378     const Slvs_Entity& aWP = myStorage->getEntity(myWorkplaneID);
379     const Slvs_Entity& anOrigin = myStorage->getEntity(aWP.point[0]);
380     const Slvs_Entity& aNormal = myStorage->getEntity(aWP.normal);
381     // Get parameters and update them
382     Slvs_hParam aWPParams[7] = {
383         anOrigin.param[0], anOrigin.param[1], anOrigin.param[2],
384         aNormal.param[0], aNormal.param[1], aNormal.param[2], aNormal.param[3]
385       };
386     std::vector<Slvs_Param>::iterator aParIter = aParams.begin();
387     for (int i = 0; aParIter != aParams.end(); aParIter++, i++) {
388       Slvs_Param aParam = myStorage->getParameter(aWPParams[i]);
389       aParam.val = aParIter->val;
390       myStorage->updateParameter(aParam);
391     }
392   }
393   return myWorkplaneID > 0;
394 }
395
396 // ============================================================================
397 //  Function: resolveConstraints
398 //  Class:    SketchSolver_Group
399 //  Purpose:  solve the set of constraints for the current group
400 // ============================================================================
401 bool SketchSolver_Group::resolveConstraints()
402 {
403   bool aResolved = false;
404   if (myStorage->isNeedToResolve() && !isEmpty()) {
405     myConstrSolver.setGroupID(myID);
406     myStorage->initializeSolver(myConstrSolver);
407
408     int aResult = SLVS_RESULT_OKAY;
409     try {
410       aResult = myConstrSolver.solve();
411     } catch (...) {
412       Events_Error::send(SketchSolver_Error::SOLVESPACE_CRASH(), this);
413       return false;
414     }
415     if (aResult == SLVS_RESULT_OKAY) {  // solution succeeded, store results into correspondent attributes
416       myFeatureStorage->blockEvents(true);
417       ConstraintConstraintMap::iterator aConstrIter = myConstraints.begin();
418       for (; aConstrIter != myConstraints.end(); aConstrIter++)
419         aConstrIter->second->refresh();
420       myFeatureStorage->blockEvents(false);
421     } else if (!myConstraints.empty())
422       Events_Error::send(SketchSolver_Error::CONSTRAINTS(), this);
423
424     aResolved = true;
425   }
426   removeTemporaryConstraints();
427   myStorage->setNeedToResolve(false);
428   return aResolved;
429 }
430
431 // ============================================================================
432 //  Function: mergeGroups
433 //  Class:    SketchSolver_Group
434 //  Purpose:  append specified group to the current group
435 // ============================================================================
436 void SketchSolver_Group::mergeGroups(const SketchSolver_Group& theGroup)
437 {
438   // If specified group is empty, no need to merge
439   if (theGroup.isEmpty())
440     return;
441   if (!myFeatureStorage)
442     myFeatureStorage = FeatureStoragePtr(new SketchSolver_FeatureStorage);
443
444   std::vector<ConstraintPtr> aComplexConstraints;
445   ConstraintConstraintMap::const_iterator aConstrIter = theGroup.myConstraints.begin();
446   // append simple constraints
447   for (; aConstrIter != theGroup.myConstraints.end(); aConstrIter++)
448     if (isComplexConstraint(aConstrIter->first))
449       aComplexConstraints.push_back(aConstrIter->first);
450     else
451       changeConstraint(aConstrIter->first);
452   // append complex constraints
453   std::vector<ConstraintPtr>::iterator aComplexIter = aComplexConstraints.begin();
454   for (; aComplexIter != aComplexConstraints.end(); aComplexIter++)
455       changeConstraint(*aComplexIter);
456 }
457
458 // ============================================================================
459 //  Function: splitGroup
460 //  Class:    SketchSolver_Group
461 //  Purpose:  divide the group into several subgroups
462 // ============================================================================
463 void SketchSolver_Group::splitGroup(std::vector<SketchSolver_Group*>& theCuts)
464 {
465   // Obtain constraints, which should be separated
466   FeatureStoragePtr aNewFeatStorage(new SketchSolver_FeatureStorage);
467   std::vector<ConstraintPtr> anUnusedConstraints;
468   ConstraintConstraintMap::iterator aCIter = myConstraints.begin();
469   for ( ; aCIter != myConstraints.end(); aCIter++) {
470     std::list<ConstraintPtr> aBaseConstraints = aCIter->second->constraints();
471     std::list<ConstraintPtr>::iterator anIter = aBaseConstraints.begin();
472     for (; anIter != aBaseConstraints.end(); anIter++)
473       if (aNewFeatStorage->isInteract(*anIter)) {
474         aNewFeatStorage->changeConstraint(*anIter);
475       } else
476         anUnusedConstraints.push_back(*anIter);
477   }
478
479   // Check the unused constraints once again, because they may become interacted with new storage since adding constraints
480   std::vector<ConstraintPtr>::iterator aUnuseIt = anUnusedConstraints.begin();
481   while (aUnuseIt != anUnusedConstraints.end()) {
482     if (aNewFeatStorage->isInteract(*aUnuseIt)) {
483       size_t aShift = aUnuseIt - anUnusedConstraints.begin();
484       anUnusedConstraints.erase(aUnuseIt);
485       aUnuseIt = anUnusedConstraints.begin() + aShift;
486       continue;
487     }
488     aUnuseIt++;
489   }
490
491   std::vector<SketchSolver_Group*>::iterator aCutsIter;
492   aUnuseIt = anUnusedConstraints.begin();
493   for ( ; aUnuseIt != anUnusedConstraints.end(); aUnuseIt++) {
494     // Remove unused constraints
495     removeConstraint(*aUnuseIt);
496     // Try to append constraint to already existent group
497     for (aCutsIter = theCuts.begin(); aCutsIter != theCuts.end(); aCutsIter++)
498       if ((*aCutsIter)->isInteract(*aUnuseIt)) {
499         (*aCutsIter)->changeConstraint(*aUnuseIt);
500         break;
501       }
502     if (aCutsIter == theCuts.end()) {
503       // Add new group
504       SketchSolver_Group* aGroup = new SketchSolver_Group(mySketch);
505       aGroup->changeConstraint(*aUnuseIt);
506       theCuts.push_back(aGroup);
507     }
508   }
509 }
510
511 // ============================================================================
512 //  Function: isConsistent
513 //  Class:    SketchSolver_Group
514 //  Purpose:  search removed entities and constraints
515 // ============================================================================
516 bool SketchSolver_Group::isConsistent()
517 {
518   if (!myFeatureStorage) // no one constraint is initialized yet
519     return true;
520
521   bool aResult = myFeatureStorage->isConsistent();
522   if (!aResult) {
523     // remove invalid entities
524     ConstraintConstraintMap::iterator aCIter = myConstraints.begin();
525     while (aCIter != myConstraints.end()) {
526       std::list<ConstraintPtr> aConstraints = aCIter->second->constraints();
527       std::list<ConstraintPtr>::iterator anIt = aConstraints.begin();
528       for (; anIt != aConstraints.end(); anIt++)
529         if (!(*anIt)->data() || !(*anIt)->data()->isValid())
530           if (aCIter->second->remove(*anIt)) {
531             // the constraint is fully removed, detach it from the list
532             ConstraintConstraintMap::iterator aTmpIt = aCIter++;
533             myFeatureStorage->removeConstraint(aTmpIt->first);
534             myConstraints.erase(aTmpIt);
535             break;
536           }
537       if (anIt == aConstraints.end())
538         aCIter++;
539     }
540   }
541   return aResult;
542 }
543
544 // ============================================================================
545 //  Function: removeTemporaryConstraints
546 //  Class:    SketchSolver_Group
547 //  Purpose:  remove all transient SLVS_C_WHERE_DRAGGED constraints after
548 //            resolving the set of constraints
549 // ============================================================================
550 void SketchSolver_Group::removeTemporaryConstraints()
551 {
552   myTempConstraints.clear();
553   myStorage->removeTemporaryConstraints();
554   // Clean lists of removed entities in the storage
555   std::set<Slvs_hParam> aRemPar;
556   std::set<Slvs_hEntity> aRemEnt;
557   std::set<Slvs_hConstraint> aRemCon;
558   myStorage->getRemoved(aRemPar, aRemEnt, aRemCon);
559   myStorage->setNeedToResolve(false);
560 }
561
562 // ============================================================================
563 //  Function: removeConstraint
564 //  Class:    SketchSolver_Group
565 //  Purpose:  remove constraint and all unused entities
566 // ============================================================================
567 void SketchSolver_Group::removeConstraint(ConstraintPtr theConstraint)
568 {
569   myFeatureStorage->removeConstraint(theConstraint);
570   ConstraintConstraintMap::iterator aCIter = myConstraints.begin();
571   for (; aCIter != myConstraints.end(); aCIter++)
572     if (aCIter->second->hasConstraint(theConstraint)) {
573       if (!aCIter->second->remove(theConstraint)) // the constraint is not fully removed
574         aCIter = myConstraints.end();
575       break;
576     }
577   if (aCIter != myConstraints.end())
578     myConstraints.erase(aCIter);
579 }
580
581 // ============================================================================
582 //  Function: isComplexConstraint
583 //  Class:    SketchSolver_Group
584 //  Purpose:  verifies the constraint is complex, i.e. it needs another constraints to be created before
585 // ============================================================================
586 bool SketchSolver_Group::isComplexConstraint(FeaturePtr theConstraint)
587 {
588   return theConstraint->getKind() == SketchPlugin_ConstraintFillet::ID() ||
589          theConstraint->getKind() == SketchPlugin_ConstraintMirror::ID() ||
590          theConstraint->getKind() == SketchPlugin_ConstraintTangent::ID();
591 }
592
593 // ============================================================================
594 //  Function: setTemporary
595 //  Class:    SketchSolver_Group
596 //  Purpose:  append given constraint to th group of temporary constraints
597 // ============================================================================
598 void SketchSolver_Group::setTemporary(SolverConstraintPtr theConstraint)
599 {
600   theConstraint->makeTemporary();
601   myTempConstraints.insert(theConstraint);
602 }
603