From: azv Date: Wed, 29 Apr 2015 07:44:39 +0000 (+0300) Subject: Use the object attributes as attributes of Rigid constraint X-Git-Tag: V_1.2.0~178^2~3 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=aec6a0796b895208183246719bb9070cb0b67eb8;p=modules%2Fshaper.git Use the object attributes as attributes of Rigid constraint --- diff --git a/src/SketchSolver/SketchSolver_ConstraintRigid.cpp b/src/SketchSolver/SketchSolver_ConstraintRigid.cpp index 7247553ae..735412dde 100644 --- a/src/SketchSolver/SketchSolver_ConstraintRigid.cpp +++ b/src/SketchSolver/SketchSolver_ConstraintRigid.cpp @@ -35,28 +35,38 @@ void SketchSolver_ConstraintRigid::process() double aValue; std::vector anEntities; getAttributes(aValue, anEntities); - if (!myErrorMsg.empty() || myFeatureMap.empty()) + if (!myErrorMsg.empty() || (myFeatureMap.empty() && myAttributeMap.empty())) return; - Slvs_hEntity anEntID = myFeatureMap.begin()->second; + Slvs_hEntity anEntID; + if (!myFeatureMap.empty()) + anEntID = myFeatureMap.begin()->second; + else + anEntID = myAttributeMap.begin()->second; if (myStorage->isEntityFixed(anEntID, true)) { myErrorMsg = SketchSolver_Error::ALREADY_FIXED(); return; } - if (myFeatureMap.begin()->first->getKind() == SketchPlugin_Line::ID()) { + std::string aKind; + if (!myFeatureMap.empty()) + aKind = myFeatureMap.begin()->first->getKind(); + else + aKind = myAttributeMap.begin()->first->attributeType(); + + if (aKind == SketchPlugin_Line::ID()) { Slvs_Entity aLine = myStorage->getEntity(anEntID); fixLine(aLine); } - else if (myFeatureMap.begin()->first->getKind() == SketchPlugin_Arc::ID()) { + else if (aKind == SketchPlugin_Arc::ID()) { Slvs_Entity anArc = myStorage->getEntity(anEntID); fixArc(anArc); } - else if (myFeatureMap.begin()->first->getKind() == SketchPlugin_Circle::ID()) { + else if (aKind == SketchPlugin_Circle::ID()) { Slvs_Entity aCirc = myStorage->getEntity(anEntID); fixCircle(aCirc); } - else if (myFeatureMap.begin()->first->getKind() == SketchPlugin_Point::ID()) { + else if (aKind == SketchPlugin_Point::ID() || aKind == GeomDataAPI_Point2D::typeId()) { fixPoint(anEntID); } }