1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: PartSet_Validators.cpp
4 // Created: 09 July 2014
5 // Author: Vitaly SMETANNIKOV
7 #include "PartSet_Validators.h"
9 #include "PartSet_Tools.h"
10 #include "PartSet_SketcherMgr.h"
13 #include <TopoDS_Edge.hxx>
14 #include <BRep_Tool.hxx>
15 #include <GeomAdaptor_Curve.hxx>
16 #include <GeomAbs_CurveType.hxx>
17 #include <ModuleBase_ISelection.h>
18 #include <ModuleBase_WidgetShapeSelector.h>
19 #include <ModuleBase_OperationFeature.h>
20 #include <ModuleBase_ViewerPrs.h>
22 #include <Events_InfoMessage.h>
24 #include <ModelAPI_AttributeRefAttr.h>
25 #include <ModelAPI_AttributeSelection.h>
26 #include <ModelAPI_AttributeReference.h>
27 #include <ModelAPI_AttributeSelectionList.h>
28 #include <ModelAPI_AttributeRefList.h>
29 #include <ModelAPI_Object.h>
30 #include <ModelAPI_Session.h>
31 #include <ModelAPI_Tools.h>
33 #include <SketchPlugin_Sketch.h>
34 #include <SketchPlugin_ConstraintCoincidence.h>
35 #include <SketchPlugin_Arc.h>
36 #include <GeomAPI_Edge.h>
43 int shapesNbPoints(const ModuleBase_ISelection* theSelection)
45 QList<ModuleBase_ViewerPrsPtr> aList = theSelection->getSelected(ModuleBase_ISelection::Viewer);
46 ModuleBase_ISelection::filterSelectionOnEqualPoints(aList);
49 foreach (ModuleBase_ViewerPrsPtr aPrs, aList) {
50 const GeomShapePtr& aShape = aPrs->shape();
51 if (aShape.get() && !aShape->isNull()) {
52 if (aShape->shapeType() == GeomAPI_Shape::VERTEX)
59 int shapesNbLines(const ModuleBase_ISelection* theSelection)
61 QList<ModuleBase_ViewerPrsPtr> aList = theSelection->getSelected(ModuleBase_ISelection::Viewer);
63 foreach(ModuleBase_ViewerPrsPtr aPrs, aList) {
64 const GeomShapePtr& aShape = aPrs->shape();
65 if (aShape.get() && !aShape->isNull()) {
66 if (aShape->shapeType() == GeomAPI_Shape::EDGE) {
67 const TopoDS_Shape& aTDShape = aShape->impl<TopoDS_Shape>();
68 TopoDS_Edge aEdge = TopoDS::Edge(aTDShape);
69 Standard_Real aStart, aEnd;
70 Handle(Geom_Curve) aCurve = BRep_Tool::Curve(aEdge, aStart, aEnd);
71 GeomAdaptor_Curve aAdaptor(aCurve);
72 if (aAdaptor.GetType() == GeomAbs_Line)
81 std::shared_ptr<GeomAPI_Pln> sketcherPlane(ModuleBase_Operation* theOperation)
83 std::shared_ptr<GeomAPI_Pln> aEmptyPln;
85 ModuleBase_OperationFeature* aFeatureOp =
86 dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
88 CompositeFeaturePtr aFeature =
89 std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeatureOp->feature());
90 if (aFeature && (aFeature->getKind() == SketchPlugin_Sketch::ID()))
91 return PartSet_Tools::sketchPlane(aFeature);
98 bool isEmptySelectionValid(ModuleBase_Operation* theOperation)
100 ModuleBase_OperationFeature* aFeatureOp =
101 dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
102 // during the create operation empty selection is always valid
103 if (!aFeatureOp->isEditOperation()) {
107 if (PartSet_SketcherMgr::isSketchOperation(aFeatureOp)) {
108 std::shared_ptr<GeomAPI_Pln> aPlane = sketcherPlane(theOperation);
115 // in edit operation an empty selection is always valid, performed for re-entrant operrations
120 bool PartSet_DistanceSelection::isValid(const ModuleBase_ISelection* theSelection,
121 ModuleBase_Operation* theOperation) const
123 if (theSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0) {
124 return isEmptySelectionValid(theOperation);
126 int aCount = shapesNbPoints(theSelection) + shapesNbLines(theSelection);
127 return (aCount > 0) && (aCount < 3);
131 bool PartSet_LengthSelection::isValid(const ModuleBase_ISelection* theSelection,
132 ModuleBase_Operation* theOperation) const
134 if (theSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0) {
135 return isEmptySelectionValid(theOperation);
137 int aCount = shapesNbLines(theSelection);
138 return (aCount == 1);
142 bool PartSet_PerpendicularSelection::isValid(const ModuleBase_ISelection* theSelection,
143 ModuleBase_Operation* theOperation) const
145 if (theSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0) {
146 return isEmptySelectionValid(theOperation);
148 int aCount = shapesNbLines(theSelection);
149 return (aCount > 0) && (aCount < 3);
153 bool PartSet_ParallelSelection::isValid(const ModuleBase_ISelection* theSelection,
154 ModuleBase_Operation* theOperation) const
156 if (theSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0) {
157 return isEmptySelectionValid(theOperation);
159 int aCount = shapesNbLines(theSelection);
160 return (aCount > 0) && (aCount < 3);
164 bool PartSet_RadiusSelection::isValid(const ModuleBase_ISelection* theSelection,
165 ModuleBase_Operation* theOperation) const
167 if (theSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0) {
168 return isEmptySelectionValid(theOperation);
170 QList<ModuleBase_ViewerPrsPtr> aList =
171 theSelection->getSelected(ModuleBase_ISelection::Viewer);
173 foreach (ModuleBase_ViewerPrsPtr aPrs, aList) {
174 const GeomShapePtr& aShape = aPrs->shape();
175 if (aShape.get() && !aShape->isNull()) {
176 if (aShape->shapeType() == GeomAPI_Shape::EDGE) {
177 const TopoDS_Shape& aTDShape = aShape->impl<TopoDS_Shape>();
178 TopoDS_Edge aEdge = TopoDS::Edge(aTDShape);
179 Standard_Real aStart, aEnd;
180 Handle(Geom_Curve) aCurve = BRep_Tool::Curve(aEdge, aStart, aEnd);
181 GeomAdaptor_Curve aAdaptor(aCurve);
182 if (aAdaptor.GetType() == GeomAbs_Circle)
187 return (aCount == 1);
191 bool PartSet_RigidSelection::isValid(const ModuleBase_ISelection* theSelection,
192 ModuleBase_Operation* theOperation) const
194 if (theSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0) {
195 return isEmptySelectionValid(theOperation);
197 QList<ModuleBase_ViewerPrsPtr> aList =
198 theSelection->getSelected(ModuleBase_ISelection::Viewer);
200 foreach (ModuleBase_ViewerPrsPtr aPrs, aList) {
201 ObjectPtr aObj = aPrs->object();
203 FeaturePtr aFeature = ModelAPI_Feature::feature(aObj);
204 if (aFeature.get()) {
205 std::shared_ptr<SketchPlugin_Feature> aSketch =
206 std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
212 return (aCount == 1);
217 bool PartSet_CoincidentSelection::isValid(const ModuleBase_ISelection* theSelection,
218 ModuleBase_Operation* theOperation) const
220 if (theSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0) {
221 return isEmptySelectionValid(theOperation);
223 // Coincident can be applied to points and to lines
224 int aCount = shapesNbPoints(theSelection);
225 aCount += shapesNbLines(theSelection);
226 return (aCount > 0) && (aCount < 3);
230 bool PartSet_HVDirSelection::isValid(const ModuleBase_ISelection* theSelection,
231 ModuleBase_Operation* theOperation) const
233 if (theSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0) {
234 return isEmptySelectionValid(theOperation);
236 int aCount = shapesNbLines(theSelection);
237 return (aCount == 1);
241 bool PartSet_FilletSelection::isValid(const ModuleBase_ISelection* theSelection,
242 ModuleBase_Operation* theOperation) const
244 if (theSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0) {
245 return isEmptySelectionValid(theOperation);
247 int aCount = shapesNbPoints(theSelection);
252 bool PartSet_TangentSelection::isValid(const ModuleBase_ISelection* theSelection,
253 ModuleBase_Operation* theOperation) const
255 if (theSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0) {
256 return isEmptySelectionValid(theOperation);
258 QList<ModuleBase_ViewerPrsPtr> aList = theSelection->getSelected(ModuleBase_ISelection::Viewer);
259 if ((aList.size() == 0) || (aList.size() > 2))
262 ModuleBase_ViewerPrsPtr aPrs = aList.first();
263 const GeomShapePtr& aShape = aPrs->shape();
264 if (!aShape.get() || aShape->isNull() || aShape->shapeType() != GeomAPI_Shape::EDGE)
266 GeomAPI_Edge aEdge1(aShape);
268 if (aEdge1.isLine() || aEdge1.isArc()) {
269 if (aList.size() == 2) {
270 // Check second selection
272 const GeomShapePtr& aShape2 = aPrs->shape();
273 if (!aShape2.get() || aShape2->isNull() || aShape2->shapeType() != GeomAPI_Shape::EDGE)
275 GeomAPI_Edge aEdge2(aShape2);
277 if (aEdge1.isLine() && aEdge2.isArc())
279 else if (aEdge1.isArc() && aEdge2.isLine())
290 bool PartSet_AngleSelection::isValid(const ModuleBase_ISelection* theSelection,
291 ModuleBase_Operation* theOperation) const
293 if (theSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0) {
294 return isEmptySelectionValid(theOperation);
296 int aCount = shapesNbLines(theSelection);
297 return (aCount > 0) && (aCount < 3);
301 bool PartSet_EqualSelection::isValid(const ModuleBase_ISelection* theSelection,
302 ModuleBase_Operation* theOperation) const
304 if (theSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0) {
305 return isEmptySelectionValid(theOperation);
307 QList<ModuleBase_ViewerPrsPtr> aList =
308 theSelection->getSelected(ModuleBase_ISelection::Viewer);
311 foreach (ModuleBase_ViewerPrsPtr aPrs, aList) {
312 GeomShapePtr aShape = aPrs->shape();
313 if (aShape.get() && aShape->isEdge()) {
315 GeomAPI_Edge aEdge(aShape);
316 if (aEdge.isLine()) {
321 } else if (aEdge.isCircle()) {
326 } else if (aEdge.isArc()) {
335 return (aCount > 0) && (aCount < 3);
339 bool PartSet_CollinearSelection::isValid(const ModuleBase_ISelection* theSelection,
340 ModuleBase_Operation* theOperation) const
342 if (theSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0) {
343 return isEmptySelectionValid(theOperation);
345 int aCount = shapesNbLines(theSelection);
346 return (aCount > 0) && (aCount < 3);
350 bool PartSet_MiddlePointSelection::isValid(const ModuleBase_ISelection* theSelection,
351 ModuleBase_Operation* theOperation) const
353 if (theSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0)
354 return isEmptySelectionValid(theOperation);
356 return shapesNbLines(theSelection) == 1 || shapesNbPoints(theSelection) == 1;
359 bool PartSet_MultyTranslationSelection::isValid(const ModuleBase_ISelection* theSelection,
360 ModuleBase_Operation* theOperation) const
362 if (theSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0) {
363 return isEmptySelectionValid(theOperation);
365 int aCount = shapesNbLines(theSelection);
370 bool PartSet_SplitSelection::isValid(const ModuleBase_ISelection* theSelection,
371 ModuleBase_Operation* theOperation) const
373 if (theSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0) {
374 return isEmptySelectionValid(theOperation);
376 int aCount = shapesNbLines(theSelection);
381 bool PartSet_ProjectionSelection::isValid(const ModuleBase_ISelection* theSelection,
382 ModuleBase_Operation* theOperation) const
384 if (theSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0) {
385 return isEmptySelectionValid(theOperation);
387 int aCount = shapesNbLines(theSelection);
393 std::string PartSet_DifferentObjectsValidator::errorMessage(
394 const PartSet_DifferentObjectsValidator::ErrorType& theType,
395 const std::string& thEqualObject, const std::string& theFirstAttribute,
396 const std::string& theSecondAttribute) const
401 anError = "The feature uses one " + thEqualObject + " object in " +
402 theFirstAttribute + " and " + theSecondAttribute + " attributes.";
404 case EqualAttributes:
405 anError = "The feature uses reference to one " + thEqualObject + " attribute in " +
406 theFirstAttribute + " and " + theSecondAttribute + " attributes.";
409 anError = "The feature uses one shape in " +
410 theFirstAttribute + " and " + theSecondAttribute + " attributes.";
413 anError = "The feature uses empty shapes in " +
414 theFirstAttribute + " and " + theSecondAttribute + " attributes.";
423 bool PartSet_DifferentObjectsValidator::isValid(const AttributePtr& theAttribute,
424 const std::list<std::string>& theArguments,
425 Events_InfoMessage& theError) const
427 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theAttribute->owner());
429 // the type of validated attributes should be equal, attributes with
430 // different types are not validated
431 // Check RefAttr attributes
432 std::string anAttrType = theAttribute->attributeType();
433 std::list<std::shared_ptr<ModelAPI_Attribute> > anAttrs;
435 if (anAttrType == ModelAPI_AttributeRefAttr::typeId()) {
436 AttributeRefAttrPtr anAttr =
437 std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(theAttribute);
438 bool isObject = anAttr->isObject();
439 ObjectPtr anObject = anAttr->object();
441 anAttrs = aFeature->data()->attributes(ModelAPI_AttributeRefAttr::typeId());
442 if (anAttrs.size() > 0) {
443 std::list<std::shared_ptr<ModelAPI_Attribute> >::iterator anAttrIter = anAttrs.begin();
444 for(; anAttrIter != anAttrs.end(); anAttrIter++) {
445 if ((*anAttrIter).get() && (*anAttrIter)->id() != theAttribute->id()) {
446 std::shared_ptr<ModelAPI_AttributeRefAttr> aRef =
447 std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(*anAttrIter);
448 if (aRef->isObject() != isObject)
451 if (aRef->object() == anObject) {
452 theError = errorMessage(EqualObjects, anObject.get() ? anObject->data()->name() : "",
453 theAttribute->id(), aRef->id());
457 else { // the attribute reference
458 AttributePtr anAttributeAttr = anAttr->attr();
459 if (aRef->attr() == anAttributeAttr) {
460 theError = errorMessage(EqualAttributes,
461 anAttributeAttr.get() ? anAttributeAttr->id() : "",
462 theAttribute->id(), aRef->id());
470 else if (anAttrType == ModelAPI_AttributeSelection::typeId()) {
471 AttributeSelectionPtr anAttr =
472 std::dynamic_pointer_cast<ModelAPI_AttributeSelection>(theAttribute);
473 ResultPtr aContext = anAttr->context();
474 GeomShapePtr aShape = anAttr->value();
476 // Check selection attributes
477 anAttrs = aFeature->data()->attributes(ModelAPI_AttributeSelection::typeId());
478 if (anAttrs.size() > 0) {
479 std::list<std::shared_ptr<ModelAPI_Attribute> >::iterator anAttr = anAttrs.begin();
480 for(; anAttr != anAttrs.end(); anAttr++) {
481 if ((*anAttr).get() && (*anAttr)->id() != theAttribute->id()) {
482 std::shared_ptr<ModelAPI_AttributeSelection> aRef =
483 std::dynamic_pointer_cast<ModelAPI_AttributeSelection>(*anAttr);
484 // check the object is already presented
485 if (aRef->context() == aContext) {
486 bool aHasShape = aShape.get() != NULL;
487 if (!aHasShape || aRef->value()->isEqual(aShape)) {
488 theError = errorMessage(EqualShapes, "", theAttribute->id(), aRef->id());
496 else if (anAttrType == ModelAPI_AttributeReference::typeId()) {
497 AttributeReferencePtr anAttr =
498 std::dynamic_pointer_cast<ModelAPI_AttributeReference>(theAttribute);
499 ObjectPtr anObject = anAttr->value();
500 // Check selection attributes
501 anAttrs = aFeature->data()->attributes(ModelAPI_AttributeReference::typeId());
502 if (anAttrs.size() > 0) {
503 std::list<std::shared_ptr<ModelAPI_Attribute> >::iterator anAttr = anAttrs.begin();
504 for(; anAttr != anAttrs.end(); anAttr++) {
505 if ((*anAttr).get() && (*anAttr)->id() != theAttribute->id()) {
506 std::shared_ptr<ModelAPI_AttributeReference> aRef =
507 std::dynamic_pointer_cast<ModelAPI_AttributeReference>(*anAttr);
508 // check the object is already presented
509 if (aRef->value() == anObject) {
510 theError = errorMessage(EqualObjects, anObject.get() ? anObject->data()->name() : "",
511 theAttribute->id(), aRef->id());
519 else if(anAttrType == ModelAPI_AttributeSelectionList::typeId()) {
520 std::shared_ptr<ModelAPI_AttributeSelectionList> aCurSelList =
521 std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(theAttribute);
522 anAttrs = aFeature->data()->attributes(ModelAPI_AttributeSelectionList::typeId());
523 if(anAttrs.size() > 0) {
524 std::list<std::shared_ptr<ModelAPI_Attribute>>::iterator anAttrItr = anAttrs.begin();
525 for(; anAttrItr != anAttrs.end(); anAttrItr++){
526 if ((*anAttrItr).get() && (*anAttrItr)->id() != theAttribute->id()){
527 std::shared_ptr<ModelAPI_AttributeSelectionList> aRefSelList =
528 std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(*anAttrItr);
529 for(int i = 0; i < aCurSelList->size(); i++) {
530 std::shared_ptr<ModelAPI_AttributeSelection> aCurSel = aCurSelList->value(i);
531 ResultPtr aCurSelContext = aCurSel->context();
532 ResultCompSolidPtr aCurSelCompSolidPtr = ModelAPI_Tools::compSolidOwner(aCurSelContext);
533 std::shared_ptr<GeomAPI_Shape> aCurSelCompSolid;
534 if(aCurSelCompSolidPtr.get()) {
535 aCurSelCompSolid = aCurSelCompSolidPtr->shape();
537 for(int j = 0; j < aRefSelList->size(); j++) {
538 std::shared_ptr<ModelAPI_AttributeSelection> aRefSel = aRefSelList->value(j);
539 ResultPtr aRefSelContext = aRefSel->context();
540 ResultCompSolidPtr aRefSelCompSolidPtr =
541 ModelAPI_Tools::compSolidOwner(aRefSelContext);
542 std::shared_ptr<GeomAPI_Shape> aRefSelCompSolid;
543 if(aRefSelCompSolidPtr.get()) {
544 aRefSelCompSolid = aRefSelCompSolidPtr->shape();
546 if ((aCurSelCompSolid.get() && aCurSelCompSolid->isEqual(aRefSel->value()))
547 || (aRefSelCompSolid.get() && aRefSelCompSolid->isEqual(aCurSel->value()))) {
548 theError = errorMessage(EqualShapes, "", theAttribute->id(),
552 if(aCurSelContext == aRefSelContext) {
553 if (aCurSel->value().get() == NULL || aRefSel->value().get() == NULL) {
554 theError = errorMessage(EmptyShapes, "", theAttribute->id(),
558 if (aCurSel->value()->isEqual(aRefSel->value())) {
559 theError = errorMessage(EqualShapes, "", theAttribute->id(),
570 else if (anAttrType == ModelAPI_AttributeRefList::typeId()) {
571 std::shared_ptr<ModelAPI_AttributeRefList> aCurSelList =
572 std::dynamic_pointer_cast<ModelAPI_AttributeRefList>(theAttribute);
573 anAttrs = aFeature->data()->attributes(ModelAPI_AttributeRefList::typeId());
574 if (anAttrs.size() > 0) {
575 std::list<std::shared_ptr<ModelAPI_Attribute>>::iterator anAttrItr = anAttrs.begin();
576 for (; anAttrItr != anAttrs.end(); anAttrItr++){
577 if ((*anAttrItr).get() && (*anAttrItr)->id() != theAttribute->id()){
578 std::shared_ptr<ModelAPI_AttributeRefList> aRefSelList =
579 std::dynamic_pointer_cast<ModelAPI_AttributeRefList>(*anAttrItr);
580 for (int i = 0; i < aCurSelList->size(); i++) {
581 ObjectPtr aCurSelObject = aCurSelList->object(i);
582 for (int j = 0; j < aRefSelList->size(); j++) {
583 if (aCurSelObject == aRefSelList->object(j)) {
584 theError = errorMessage(EqualObjects,
585 aCurSelObject.get() ? aCurSelObject->data()->name() : "",
586 theAttribute->id(), aCurSelList->id());
598 bool PartSet_CoincidentAttr::isValid(const AttributePtr& theAttribute,
599 const std::list<std::string>& theArguments,
600 Events_InfoMessage& theError) const
602 if (theAttribute->attributeType() != ModelAPI_AttributeRefAttr::typeId()) {
603 theError = "The attribute with the %1 type is not processed";
604 theError.arg(theAttribute->attributeType());
608 // there is a check whether the feature contains a point and a linear edge or two point values
609 std::string aParamA = theArguments.front();
610 SessionPtr aMgr = ModelAPI_Session::get();
611 ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
613 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theAttribute->owner());
614 AttributeRefAttrPtr aRefAttr = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(theAttribute);
615 QList<FeaturePtr> aCoinsideLines;
616 QList<FeaturePtr> aCoins;
618 bool isObject = aRefAttr->isObject();
619 ObjectPtr anObject = aRefAttr->object();
620 if (isObject && anObject) {
621 FeaturePtr aRefFea = ModelAPI_Feature::feature(anObject);
622 AttributeRefAttrPtr aOtherAttr = aFeature->data()->refattr(aParamA);
623 ObjectPtr aOtherObject = aOtherAttr->object();
624 // if the other attribute is not filled still, the result is true
625 if (!aOtherObject.get())
627 FeaturePtr aOtherFea = ModelAPI_Feature::feature(aOtherObject);
629 // check that both have coincidence
630 FeaturePtr aConstrFeature;
631 std::set<FeaturePtr> aCoinList;
632 const std::set<std::shared_ptr<ModelAPI_Attribute>>& aRefsList = aRefFea->data()->refsToMe();
633 std::set<std::shared_ptr<ModelAPI_Attribute>>::const_iterator aIt;
634 for (aIt = aRefsList.cbegin(); aIt != aRefsList.cend(); ++aIt) {
635 std::shared_ptr<ModelAPI_Attribute> aAttr = (*aIt);
636 aConstrFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aAttr->owner());
637 if (aConstrFeature->getKind() == SketchPlugin_ConstraintCoincidence::ID()) {
638 AttributeRefAttrPtr aRAttr = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(aAttr);
639 AttributePtr aAR = aRAttr->attr();
640 if (aAR->id() != SketchPlugin_Arc::CENTER_ID()) // ignore constraint to center of arc
641 aCoinList.insert(aConstrFeature);
642 PartSet_Tools::findCoincidences(aConstrFeature, aCoinsideLines, aCoins,
643 SketchPlugin_ConstraintCoincidence::ENTITY_A());
644 PartSet_Tools::findCoincidences(aConstrFeature, aCoinsideLines, aCoins,
645 SketchPlugin_ConstraintCoincidence::ENTITY_B());
648 // if there is no coincidence then it is not valid
649 if (aCoinList.size() > 0) {
650 QList<FeaturePtr>::const_iterator anIt = aCoinsideLines.begin(), aLast = aCoinsideLines.end();
652 for (; anIt != aLast && !aValid; anIt++) {
653 aValid = *anIt == aOtherFea;
659 theError = "There is no a common coincident point.";