]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchSolver/SketchSolver_Group.cpp
Salome HOME
Merge branch 'Dev_1.1.0' of newgeom:newgeom into Dev_1.1.0
[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   bool isNewConstraint = myConstraints.find(theConstraint) == myConstraints.end();
184   if (isNewConstraint) {
185     // Add constraint to the current group
186     SolverConstraintPtr aConstraint =
187         SketchSolver_Builder::getInstance()->createConstraint(theConstraint);
188     if (!aConstraint)
189       return false;
190     aConstraint->setGroup(this);
191     aConstraint->setStorage(myStorage);
192     if (!aConstraint->error().empty()) {
193       if (aConstraint->error() == SketchSolver_Error::NOT_INITIALIZED())
194         return false; // some attribute are not initialized yet, don't show message
195       Events_Error::send(aConstraint->error(), this);
196     }
197
198     // Additional verification of coincidence of several points
199     if (theConstraint->getKind() == SketchPlugin_ConstraintCoincidence::ID()) {
200       ConstraintConstraintMap::iterator aCIter = myConstraints.begin();
201       for (; aCIter != myConstraints.end(); aCIter++) {
202         std::shared_ptr<SketchSolver_ConstraintCoincidence> aCoincidence =
203           std::dynamic_pointer_cast<SketchSolver_ConstraintCoincidence>(aCIter->second);
204         if (!aCoincidence)
205           continue;
206         std::shared_ptr<SketchSolver_ConstraintCoincidence> aCoinc2 =
207           std::dynamic_pointer_cast<SketchSolver_ConstraintCoincidence>(aConstraint);
208         if (aCoincidence != aCoinc2 && aCoincidence->isCoincide(aCoinc2)) {
209           aCoincidence->attach(aCoinc2);
210           aConstraint = aCoincidence;
211         }
212       }
213     }
214     myConstraints[theConstraint] = aConstraint;
215   }
216   else
217     myConstraints[theConstraint]->update();
218
219   // Fix base features for fillet
220   if (isNewConstraint && theConstraint->getKind() == SketchPlugin_ConstraintFillet::ID()) {
221     std::list<AttributePtr> anAttrList =
222         theConstraint->data()->attributes(ModelAPI_AttributeRefAttr::typeId());
223     std::list<AttributePtr>::iterator anAttrIter = anAttrList.begin();
224     for (; anAttrIter != anAttrList.end(); anAttrIter++) {
225       AttributeRefAttrPtr aRefAttr =
226           std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(*anAttrIter);
227       if (!aRefAttr || !aRefAttr->isObject())
228         continue;
229       FeaturePtr aFeature = ModelAPI_Feature::feature(aRefAttr->object());
230       SolverConstraintPtr aConstraint =
231           SketchSolver_Builder::getInstance()->createRigidConstraint(aFeature);
232       if (!aConstraint)
233         continue;
234       aConstraint->setGroup(this);
235       aConstraint->setStorage(myStorage);
236       setTemporary(aConstraint);
237     }
238   }
239   //// Fix base features for mirror
240   //if (theConstraint->getKind() == SketchPlugin_ConstraintMirror::ID()) {
241   //  AttributeRefListPtr aRefList = std::dynamic_pointer_cast<ModelAPI_AttributeRefList>(
242   //      theConstraint->attribute(SketchPlugin_ConstraintMirror::ENTITY_B()));
243   //  fixFeaturesList(aRefList);
244   //}
245
246   if (!myFeatureStorage)
247     myFeatureStorage = FeatureStoragePtr(new SketchSolver_FeatureStorage);
248   myFeatureStorage->changeConstraint(theConstraint);
249
250   return true;
251 }
252
253
254 bool SketchSolver_Group::updateFeature(std::shared_ptr<SketchPlugin_Feature> theFeature)
255 {
256   std::set<ConstraintPtr> aConstraints =
257       myFeatureStorage->getConstraints(std::dynamic_pointer_cast<ModelAPI_Feature>(theFeature));
258   if (aConstraints.empty())
259     return false;
260   std::set<ConstraintPtr>::iterator aCIter = aConstraints.begin();
261   for (; aCIter != aConstraints.end(); aCIter++) {
262     ConstraintConstraintMap::iterator aSolConIter = myConstraints.find(*aCIter);
263     if (aSolConIter == myConstraints.end() || !aSolConIter->first->data() ||
264         !aSolConIter->first->data()->isValid())
265       continue;
266     myFeatureStorage->changeFeature(theFeature, aSolConIter->first);
267     aSolConIter->second->addFeature(theFeature);
268     aSolConIter->second->update();
269   }
270   return true;
271 }
272
273 void SketchSolver_Group::moveFeature(std::shared_ptr<SketchPlugin_Feature> theFeature)
274 {
275   updateFeature(theFeature);
276   // Temporary rigid constraint
277   SolverConstraintPtr aConstraint =
278       SketchSolver_Builder::getInstance()->createRigidConstraint(theFeature);
279   if (!aConstraint)
280     return;
281   aConstraint->setGroup(this);
282   aConstraint->setStorage(myStorage);
283   if (aConstraint->error().empty())
284     setTemporary(aConstraint);
285 }
286
287 // ============================================================================
288 //  Function: fixFeaturesList
289 //  Class:    SketchSolver_Group
290 //  Purpose:  Apply temporary rigid constraints for the list of features
291 // ============================================================================
292 void SketchSolver_Group::fixFeaturesList(AttributeRefListPtr theList)
293 {
294   std::list<ObjectPtr> aList = theList->list();
295   std::list<ObjectPtr>::iterator anIt = aList.begin();
296   std::list<FeaturePtr> aFeatures;
297   // Sort features, at begining there are features used by Equal constraint
298   for (; anIt != aList.end(); anIt++) {
299     if (!(*anIt))
300       continue;
301     FeaturePtr aFeature = ModelAPI_Feature::feature(*anIt);
302     std::set<ConstraintPtr> aConstraints = myFeatureStorage->getConstraints(aFeature);
303     std::set<ConstraintPtr>::iterator aCIter = aConstraints.begin();
304     for (; aCIter != aConstraints.end(); aCIter++)
305       if ((*aCIter)->getKind() == SketchPlugin_ConstraintEqual::ID())
306         break;
307     if (aCIter != aConstraints.end())
308       aFeatures.push_front(aFeature);
309     else
310       aFeatures.push_back(aFeature);
311   }
312
313   std::list<FeaturePtr>::iterator aFeatIter = aFeatures.begin();
314   for (; aFeatIter != aFeatures.end(); aFeatIter++) {
315     SolverConstraintPtr aConstraint =
316         SketchSolver_Builder::getInstance()->createRigidConstraint(*aFeatIter);
317     if (!aConstraint)
318       continue;
319     aConstraint->setGroup(this);
320     aConstraint->setStorage(myStorage);
321     setTemporary(aConstraint);
322   }
323 }
324
325 // ============================================================================
326 //  Function: addWorkplane
327 //  Class:    SketchSolver_Group
328 //  Purpose:  create workplane for the group
329 // ============================================================================
330 bool SketchSolver_Group::addWorkplane(CompositeFeaturePtr theSketch)
331 {
332   if (myWorkplaneID != SLVS_E_UNKNOWN || theSketch->getKind() != SketchPlugin_Sketch::ID())
333     return false;  // the workplane already exists or the function parameter is not Sketch
334
335   mySketch = theSketch;
336   updateWorkplane();
337   return true;
338 }
339
340 // ============================================================================
341 //  Function: updateWorkplane
342 //  Class:    SketchSolver_Group
343 //  Purpose:  update parameters of workplane
344 // ============================================================================
345 bool SketchSolver_Group::updateWorkplane()
346 {
347   if (!myStorage) // Create storage if not exists
348     myStorage = StoragePtr(new SketchSolver_Storage);
349   SketchSolver_Builder* aBuilder = SketchSolver_Builder::getInstance();
350
351   std::vector<Slvs_Entity> anEntities;
352   std::vector<Slvs_Param> aParams;
353   if (!aBuilder->createWorkplane(mySketch, anEntities, aParams))
354     return false;
355
356   if (myWorkplaneID == SLVS_E_UNKNOWN) {
357     myWorkplaneID = anEntities.back().h;
358     // Add new workplane elements
359     std::vector<Slvs_Param>::iterator aParIter = aParams.begin();
360     for (; aParIter != aParams.end(); aParIter++) {
361       aParIter->h = SLVS_E_UNKNOWN; // the ID should be generated by storage
362       aParIter->group = myID;
363       aParIter->h = myStorage->addParameter(*aParIter);
364     }
365     std::vector<Slvs_Entity>::iterator anEntIter = anEntities.begin();
366     for (; anEntIter != anEntities.end(); anEntIter++) {
367       anEntIter->h = SLVS_E_UNKNOWN; // the ID should be generated by storage
368       anEntIter->group = myID;
369       anEntIter->wrkpl = myWorkplaneID;
370       for (int i = 0; i < 4; i++)
371         if (anEntIter->param[i] != SLVS_E_UNKNOWN)
372           anEntIter->param[i] = aParams[anEntIter->param[i]-1].h;
373       for (int i = 0; i < 4; i++)
374         if (anEntIter->point[i] != SLVS_E_UNKNOWN)
375           anEntIter->point[i] = anEntities[anEntIter->point[i]-1].h;
376       anEntIter->h = myStorage->addEntity(*anEntIter);
377     }
378   } else {
379     // Update existent workplane
380     const Slvs_Entity& aWP = myStorage->getEntity(myWorkplaneID);
381     const Slvs_Entity& anOrigin = myStorage->getEntity(aWP.point[0]);
382     const Slvs_Entity& aNormal = myStorage->getEntity(aWP.normal);
383     // Get parameters and update them
384     Slvs_hParam aWPParams[7] = {
385         anOrigin.param[0], anOrigin.param[1], anOrigin.param[2],
386         aNormal.param[0], aNormal.param[1], aNormal.param[2], aNormal.param[3]
387       };
388     std::vector<Slvs_Param>::iterator aParIter = aParams.begin();
389     for (int i = 0; aParIter != aParams.end(); aParIter++, i++) {
390       Slvs_Param aParam = myStorage->getParameter(aWPParams[i]);
391       aParam.val = aParIter->val;
392       myStorage->updateParameter(aParam);
393     }
394   }
395   return myWorkplaneID > 0;
396 }
397
398 // ============================================================================
399 //  Function: resolveConstraints
400 //  Class:    SketchSolver_Group
401 //  Purpose:  solve the set of constraints for the current group
402 // ============================================================================
403 bool SketchSolver_Group::resolveConstraints()
404 {
405   bool aResolved = false;
406   if (myStorage->isNeedToResolve() && !isEmpty()) {
407     myConstrSolver.setGroupID(myID);
408     myStorage->initializeSolver(myConstrSolver);
409
410     int aResult = SLVS_RESULT_OKAY;
411     try {
412       if (myStorage->hasDuplicatedConstraint())
413         aResult = SLVS_RESULT_INCONSISTENT;
414       else
415         aResult = myConstrSolver.solve();
416     } catch (...) {
417       Events_Error::send(SketchSolver_Error::SOLVESPACE_CRASH(), this);
418       return false;
419     }
420     if (aResult == SLVS_RESULT_OKAY) {  // solution succeeded, store results into correspondent attributes
421       myFeatureStorage->blockEvents(true);
422       ConstraintConstraintMap::iterator aConstrIter = myConstraints.begin();
423       for (; aConstrIter != myConstraints.end(); aConstrIter++)
424         aConstrIter->second->refresh();
425       myFeatureStorage->blockEvents(false);
426     } else if (!myConstraints.empty())
427       Events_Error::send(SketchSolver_Error::CONSTRAINTS(), this);
428
429     aResolved = true;
430   }
431   removeTemporaryConstraints();
432   myStorage->setNeedToResolve(false);
433   return aResolved;
434 }
435
436 // ============================================================================
437 //  Function: mergeGroups
438 //  Class:    SketchSolver_Group
439 //  Purpose:  append specified group to the current group
440 // ============================================================================
441 void SketchSolver_Group::mergeGroups(const SketchSolver_Group& theGroup)
442 {
443   // If specified group is empty, no need to merge
444   if (theGroup.isEmpty())
445     return;
446   if (!myFeatureStorage)
447     myFeatureStorage = FeatureStoragePtr(new SketchSolver_FeatureStorage);
448
449   std::vector<ConstraintPtr> aComplexConstraints;
450   ConstraintConstraintMap::const_iterator aConstrIter = theGroup.myConstraints.begin();
451   // append simple constraints
452   for (; aConstrIter != theGroup.myConstraints.end(); aConstrIter++)
453     if (isComplexConstraint(aConstrIter->first))
454       aComplexConstraints.push_back(aConstrIter->first);
455     else
456       changeConstraint(aConstrIter->first);
457   // append complex constraints
458   std::vector<ConstraintPtr>::iterator aComplexIter = aComplexConstraints.begin();
459   for (; aComplexIter != aComplexConstraints.end(); aComplexIter++)
460       changeConstraint(*aComplexIter);
461 }
462
463 // ============================================================================
464 //  Function: splitGroup
465 //  Class:    SketchSolver_Group
466 //  Purpose:  divide the group into several subgroups
467 // ============================================================================
468 void SketchSolver_Group::splitGroup(std::vector<SketchSolver_Group*>& theCuts)
469 {
470   // Obtain constraints, which should be separated
471   FeatureStoragePtr aNewFeatStorage(new SketchSolver_FeatureStorage);
472   std::vector<ConstraintPtr> anUnusedConstraints;
473   ConstraintConstraintMap::iterator aCIter = myConstraints.begin();
474   for ( ; aCIter != myConstraints.end(); aCIter++) {
475     std::list<ConstraintPtr> aBaseConstraints = aCIter->second->constraints();
476     std::list<ConstraintPtr>::iterator anIter = aBaseConstraints.begin();
477     for (; anIter != aBaseConstraints.end(); anIter++)
478       if (aNewFeatStorage->isInteract(*anIter)) {
479         aNewFeatStorage->changeConstraint(*anIter);
480       } else
481         anUnusedConstraints.push_back(*anIter);
482   }
483
484   // Check the unused constraints once again, because they may become interacted with new storage since adding constraints
485   std::vector<ConstraintPtr>::iterator aUnuseIt = anUnusedConstraints.begin();
486   while (aUnuseIt != anUnusedConstraints.end()) {
487     if (aNewFeatStorage->isInteract(*aUnuseIt)) {
488       size_t aShift = aUnuseIt - anUnusedConstraints.begin();
489       anUnusedConstraints.erase(aUnuseIt);
490       aUnuseIt = anUnusedConstraints.begin() + aShift;
491       continue;
492     }
493     aUnuseIt++;
494   }
495
496   std::vector<SketchSolver_Group*>::iterator aCutsIter;
497   aUnuseIt = anUnusedConstraints.begin();
498   for ( ; aUnuseIt != anUnusedConstraints.end(); aUnuseIt++) {
499     // Remove unused constraints
500     removeConstraint(*aUnuseIt);
501     // Try to append constraint to already existent group
502     for (aCutsIter = theCuts.begin(); aCutsIter != theCuts.end(); aCutsIter++)
503       if ((*aCutsIter)->isInteract(*aUnuseIt)) {
504         (*aCutsIter)->changeConstraint(*aUnuseIt);
505         break;
506       }
507     if (aCutsIter == theCuts.end()) {
508       // Add new group
509       SketchSolver_Group* aGroup = new SketchSolver_Group(mySketch);
510       aGroup->changeConstraint(*aUnuseIt);
511       theCuts.push_back(aGroup);
512     }
513   }
514 }
515
516 // ============================================================================
517 //  Function: isConsistent
518 //  Class:    SketchSolver_Group
519 //  Purpose:  search removed entities and constraints
520 // ============================================================================
521 bool SketchSolver_Group::isConsistent()
522 {
523   if (!myFeatureStorage) // no one constraint is initialized yet
524     return true;
525
526   bool aResult = myFeatureStorage->isConsistent();
527   if (!aResult) {
528     // remove invalid entities
529     ConstraintConstraintMap::iterator aCIter = myConstraints.begin();
530     while (aCIter != myConstraints.end()) {
531       std::list<ConstraintPtr> aConstraints = aCIter->second->constraints();
532       std::list<ConstraintPtr>::iterator anIt = aConstraints.begin();
533       for (; anIt != aConstraints.end(); anIt++)
534         if (!(*anIt)->data() || !(*anIt)->data()->isValid())
535           if (aCIter->second->remove(*anIt)) {
536             // the constraint is fully removed, detach it from the list
537             ConstraintConstraintMap::iterator aTmpIt = aCIter++;
538             myFeatureStorage->removeConstraint(aTmpIt->first);
539             myConstraints.erase(aTmpIt);
540             break;
541           }
542       if (anIt == aConstraints.end())
543         aCIter++;
544     }
545   }
546   return aResult;
547 }
548
549 // ============================================================================
550 //  Function: removeTemporaryConstraints
551 //  Class:    SketchSolver_Group
552 //  Purpose:  remove all transient SLVS_C_WHERE_DRAGGED constraints after
553 //            resolving the set of constraints
554 // ============================================================================
555 void SketchSolver_Group::removeTemporaryConstraints()
556 {
557   myTempConstraints.clear();
558   myStorage->removeTemporaryConstraints();
559   // Clean lists of removed entities in the storage
560   std::set<Slvs_hParam> aRemPar;
561   std::set<Slvs_hEntity> aRemEnt;
562   std::set<Slvs_hConstraint> aRemCon;
563   myStorage->getRemoved(aRemPar, aRemEnt, aRemCon);
564   myStorage->setNeedToResolve(false);
565 }
566
567 // ============================================================================
568 //  Function: removeConstraint
569 //  Class:    SketchSolver_Group
570 //  Purpose:  remove constraint and all unused entities
571 // ============================================================================
572 void SketchSolver_Group::removeConstraint(ConstraintPtr theConstraint)
573 {
574   myFeatureStorage->removeConstraint(theConstraint);
575   ConstraintConstraintMap::iterator aCIter = myConstraints.begin();
576   for (; aCIter != myConstraints.end(); aCIter++)
577     if (aCIter->second->hasConstraint(theConstraint)) {
578       if (!aCIter->second->remove(theConstraint)) // the constraint is not fully removed
579         aCIter = myConstraints.end();
580       break;
581     }
582   if (aCIter != myConstraints.end())
583     myConstraints.erase(aCIter);
584 }
585
586 // ============================================================================
587 //  Function: isComplexConstraint
588 //  Class:    SketchSolver_Group
589 //  Purpose:  verifies the constraint is complex, i.e. it needs another constraints to be created before
590 // ============================================================================
591 bool SketchSolver_Group::isComplexConstraint(FeaturePtr theConstraint)
592 {
593   return theConstraint->getKind() == SketchPlugin_ConstraintFillet::ID() ||
594          theConstraint->getKind() == SketchPlugin_ConstraintMirror::ID() ||
595          theConstraint->getKind() == SketchPlugin_ConstraintTangent::ID();
596 }
597
598 // ============================================================================
599 //  Function: setTemporary
600 //  Class:    SketchSolver_Group
601 //  Purpose:  append given constraint to th group of temporary constraints
602 // ============================================================================
603 void SketchSolver_Group::setTemporary(SolverConstraintPtr theConstraint)
604 {
605   theConstraint->makeTemporary();
606   myTempConstraints.insert(theConstraint);
607 }
608