X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_Circle.cpp;h=bf8a7d8d07b41186c1d6e62c7932970b7b7ce461;hb=34bfe89b8ad83a4a3d5b07bcf08a4df075c3f83c;hp=6bbb91c7349b38d406c4240dbb8fd18d880490d9;hpb=703412eb48fcfc53a500ed637e02739d31f991c4;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Circle.cpp b/src/SketchPlugin/SketchPlugin_Circle.cpp index 6bbb91c73..bf8a7d8d0 100644 --- a/src/SketchPlugin/SketchPlugin_Circle.cpp +++ b/src/SketchPlugin/SketchPlugin_Circle.cpp @@ -83,15 +83,6 @@ void SketchPlugin_Circle::move(double theDeltaX, double theDeltaY) aPoint1->move(theDeltaX, theDeltaY); } -double SketchPlugin_Circle::distanceToPoint(const std::shared_ptr& thePoint) -{ - 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().get() != NULL; }