X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_Point.cpp;h=7cbdb647cc521533ec783ba3a192e52553b1b1d6;hb=e2d663d27bdf897cebc9e5f0468214d531a57e3d;hp=6df2b536bad40f21b91a6bdf4fbfd97c9cb65b8a;hpb=4530a368fc9ac77cec2bd8de181b07eee18ed839;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Point.cpp b/src/SketchPlugin/SketchPlugin_Point.cpp index 6df2b536b..7cbdb647c 100644 --- a/src/SketchPlugin/SketchPlugin_Point.cpp +++ b/src/SketchPlugin/SketchPlugin_Point.cpp @@ -4,7 +4,15 @@ #include "SketchPlugin_Point.h" #include "SketchPlugin_Sketch.h" + #include +#include +#include +#include +#include + +#include + #include #include @@ -16,24 +24,49 @@ SketchPlugin_Point::SketchPlugin_Point() void SketchPlugin_Point::initAttributes() { - data()->addAttribute(POINT_ATTR_COORD, GeomDataAPI_Point2D::type()); -} - -void SketchPlugin_Point::execute() -{ + data()->addAttribute(SketchPlugin_Point::COORD_ID(), GeomDataAPI_Point2D::type()); + data()->addAttribute(EXTERNAL_ID(), ModelAPI_AttributeSelection::type()); + ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), EXTERNAL_ID()); } -const boost::shared_ptr& SketchPlugin_Point::preview() +void SketchPlugin_Point::execute() { SketchPlugin_Sketch* aSketch = sketch(); if (aSketch) { // compute a point in 3D view - boost::shared_ptr aPoint = - boost::dynamic_pointer_cast(data()->attribute(POINT_ATTR_COORD)); + boost::shared_ptr aPoint = + boost::dynamic_pointer_cast( + data()->attribute(SketchPlugin_Point::COORD_ID())); boost::shared_ptr aPoint3D(aSketch->to3D(aPoint->x(), aPoint->y())); // make a visible point boost::shared_ptr aPointShape = GeomAlgoAPI_PointBuilder::point(aPoint3D); - setPreview(aPointShape); + boost::shared_ptr aConstr = document()->createConstruction(data()); + aConstr->setShape(aPointShape); + aConstr->setIsInHistory(false); + setResult(aConstr); } - return getPreview(); +} + +void SketchPlugin_Point::move(double theDeltaX, double theDeltaY) +{ + boost::shared_ptr aData = data(); + if (!aData->isValid()) + return; + + boost::shared_ptr aPoint1 = boost::dynamic_pointer_cast( + aData->attribute(SketchPlugin_Point::COORD_ID())); + aPoint1->move(theDeltaX, theDeltaY); +} + +double SketchPlugin_Point::distanceToPoint(const boost::shared_ptr& thePoint) +{ + boost::shared_ptr aData = data(); + boost::shared_ptr aPoint = boost::dynamic_pointer_cast( + aData->attribute(SketchPlugin_Point::COORD_ID())); + + return aPoint->pnt()->distance(thePoint); +} + +bool SketchPlugin_Point::isFixed() { + return data()->selection(EXTERNAL_ID())->context(); }