X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_Circle.cpp;h=50b387414b82402e10bec366908b2d2d856f24fa;hb=3eb5a9ba3696a7d8eb516943dfdabd8b188a76c5;hp=06ab76d14be74af9e3e6e017afddb8f246776782;hpb=94ba553e7b92f11a936e027b49bbd1d501eeee44;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Circle.cpp b/src/SketchPlugin/SketchPlugin_Circle.cpp index 06ab76d14..50b387414 100644 --- a/src/SketchPlugin/SketchPlugin_Circle.cpp +++ b/src/SketchPlugin/SketchPlugin_Circle.cpp @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> + // File: SketchPlugin_Circle.cpp // Created: 26 May 2014 // Author: Artem ZHIDKOV @@ -20,12 +22,14 @@ #include SketchPlugin_Circle::SketchPlugin_Circle() - : SketchPlugin_Feature() + : SketchPlugin_SketchEntity() { } void SketchPlugin_Circle::initAttributes() { + SketchPlugin_SketchEntity::initAttributes(); + data()->addAttribute(CENTER_ID(), GeomDataAPI_Point2D::type()); data()->addAttribute(RADIUS_ID(), ModelAPI_AttributeDouble::type()); data()->addAttribute(EXTERNAL_ID(), ModelAPI_AttributeSelection::type()); @@ -36,36 +40,37 @@ void SketchPlugin_Circle::execute() { SketchPlugin_Sketch* aSketch = sketch(); if (aSketch) { - std::list > aShapes; + std::list > aShapes; // compute a circle point in 3D view - boost::shared_ptr aCenterAttr = boost::dynamic_pointer_cast< + std::shared_ptr aCenterAttr = std::dynamic_pointer_cast< GeomDataAPI_Point2D>(data()->attribute(CENTER_ID())); AttributeDoublePtr aRadiusAttr = - boost::dynamic_pointer_cast(data()->attribute(RADIUS_ID())); + std::dynamic_pointer_cast(data()->attribute(RADIUS_ID())); if (aCenterAttr->isInitialized() && aRadiusAttr->isInitialized()) { - boost::shared_ptr aCenter(aSketch->to3D(aCenterAttr->x(), aCenterAttr->y())); + std::shared_ptr aCenter(aSketch->to3D(aCenterAttr->x(), aCenterAttr->y())); + //std::cout<<"Execute circle "<x()<<" "<y()<<" "<z()< aCenterPointShape = GeomAlgoAPI_PointBuilder::point(aCenter); - boost::shared_ptr aConstr1 = document()->createConstruction( + std::shared_ptr aCenterPointShape = GeomAlgoAPI_PointBuilder::point(aCenter); + std::shared_ptr aConstr1 = document()->createConstruction( data(), 0); aConstr1->setShape(aCenterPointShape); aConstr1->setIsInHistory(false); setResult(aConstr1, 0); // make a visible circle - boost::shared_ptr aNDir = boost::dynamic_pointer_cast( + std::shared_ptr aNDir = std::dynamic_pointer_cast( aSketch->data()->attribute(SketchPlugin_Sketch::NORM_ID())); bool aHasPlane = aNDir && !(aNDir->x() == 0 && aNDir->y() == 0 && aNDir->z() == 0); if (aHasPlane) { - boost::shared_ptr aNormal(new GeomAPI_Dir(aNDir->x(), aNDir->y(), aNDir->z())); + std::shared_ptr aNormal(new GeomAPI_Dir(aNDir->x(), aNDir->y(), aNDir->z())); // compute the circle radius double aRadius = aRadiusAttr->value(); - boost::shared_ptr aCircleShape = GeomAlgoAPI_EdgeBuilder::lineCircle( + std::shared_ptr aCircleShape = GeomAlgoAPI_EdgeBuilder::lineCircle( aCenter, aNormal, aRadius); aShapes.push_back(aCircleShape); - boost::shared_ptr aConstr2 = document()->createConstruction( + std::shared_ptr aConstr2 = document()->createConstruction( data(), 1); aConstr2->setShape(aCircleShape); aConstr2->setIsInHistory(false); @@ -77,39 +82,39 @@ void SketchPlugin_Circle::execute() void SketchPlugin_Circle::move(double theDeltaX, double theDeltaY) { - boost::shared_ptr aData = data(); + std::shared_ptr aData = data(); if (!aData->isValid()) return; - boost::shared_ptr aPoint1 = boost::dynamic_pointer_cast( + std::shared_ptr aPoint1 = std::dynamic_pointer_cast( aData->attribute(CENTER_ID())); aPoint1->move(theDeltaX, theDeltaY); } -double SketchPlugin_Circle::distanceToPoint(const boost::shared_ptr& thePoint) +double SketchPlugin_Circle::distanceToPoint(const std::shared_ptr& thePoint) { - boost::shared_ptr aData = data(); - boost::shared_ptr aPoint = - boost::dynamic_pointer_cast(aData->attribute(CENTER_ID())); + std::shared_ptr aData = data(); + std::shared_ptr aPoint = + std::dynamic_pointer_cast(aData->attribute(CENTER_ID())); return aPoint->pnt()->distance(thePoint); } bool SketchPlugin_Circle::isFixed() { - return data()->selection(EXTERNAL_ID())->context(); + return data()->selection(EXTERNAL_ID())->context().get(); } -void SketchPlugin_Circle::attributeChanged() { - static bool myIsUpdated = false; // to avoid infinitive cycle on attrubtes change - boost::shared_ptr aSelection = data()->selection(EXTERNAL_ID())->value(); - if (aSelection && !myIsUpdated) { // update arguments due to the selection value - myIsUpdated = true; - boost::shared_ptr anEdge( new GeomAPI_Edge(aSelection)); - boost::shared_ptr aCirc = anEdge->circle(); - boost::shared_ptr aCenterAttr = - boost::dynamic_pointer_cast(attribute(CENTER_ID())); - aCenterAttr->setValue(sketch()->to2D(aCirc->center())); - real(RADIUS_ID())->setValue(aCirc->radius()); - myIsUpdated = false; +void SketchPlugin_Circle::attributeChanged(const std::string& theID) { + if (theID == EXTERNAL_ID()) { + std::shared_ptr aSelection = data()->selection(EXTERNAL_ID())->value(); + // update arguments due to the selection value + if (aSelection && !aSelection->isNull() && aSelection->isEdge()) { + std::shared_ptr anEdge( new GeomAPI_Edge(aSelection)); + std::shared_ptr aCirc = anEdge->circle(); + std::shared_ptr aCenterAttr = + std::dynamic_pointer_cast(attribute(CENTER_ID())); + aCenterAttr->setValue(sketch()->to2D(aCirc->center())); + real(RADIUS_ID())->setValue(aCirc->radius()); + } } }