X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_Line.cpp;h=8f8df83040257ecee86f031dfbde797eabb7c462;hb=47d69c6e766821c1296c5147a6248ae49020c7dd;hp=ee3f8c8612dd9fa32e01d082f6864b51be5c561c;hpb=50d85b6bd3f3dd43e11cb6a9ccb3446f5f6d49b6;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Line.cpp b/src/SketchPlugin/SketchPlugin_Line.cpp index ee3f8c861..8f8df8304 100644 --- a/src/SketchPlugin/SketchPlugin_Line.cpp +++ b/src/SketchPlugin/SketchPlugin_Line.cpp @@ -5,10 +5,16 @@ #include "SketchPlugin_Line.h" #include "SketchPlugin_Sketch.h" #include + #include +#include +#include + #include #include +#include + using namespace std; // face of the square-face displayed for selection of general plane @@ -17,7 +23,6 @@ const double PLANE_SIZE = 200; SketchPlugin_Line::SketchPlugin_Line() : SketchPlugin_Feature() { - setSketch(0); } void SketchPlugin_Line::initAttributes() @@ -37,14 +42,54 @@ const boost::shared_ptr& SketchPlugin_Line::preview() // compute a start point in 3D view boost::shared_ptr aStartAttr = boost::dynamic_pointer_cast(data()->attribute(LINE_ATTR_START)); - boost::shared_ptr aStart(aSketch->to3D(aStartAttr->x(), aStartAttr->y())); // compute an end point in 3D view boost::shared_ptr anEndAttr = boost::dynamic_pointer_cast(data()->attribute(LINE_ATTR_END)); - boost::shared_ptr anEnd(aSketch->to3D(anEndAttr->x(), anEndAttr->y())); - // make linear edge - boost::shared_ptr anEdge = GeomAlgoAPI_EdgeBuilder::line(aStart, anEnd); - setPreview(anEdge); + if (aStartAttr->isInitialized() && anEndAttr->isInitialized()) { + boost::shared_ptr aStart(aSketch->to3D(aStartAttr->x(), aStartAttr->y())); + boost::shared_ptr anEnd(aSketch->to3D(anEndAttr->x(), anEndAttr->y())); + // make linear edge + boost::shared_ptr anEdge = GeomAlgoAPI_EdgeBuilder::line(aStart, anEnd); + setPreview(anEdge); + } } return getPreview(); } + +void SketchPlugin_Line::move(double theDeltaX, double theDeltaY) +{ + boost::shared_ptr aData = data(); + if (!aData->isValid()) + return; + + boost::shared_ptr aPoint1 = + boost::dynamic_pointer_cast(aData->attribute(LINE_ATTR_START)); + aPoint1->setValue(aPoint1->x() + theDeltaX, aPoint1->y() + theDeltaY); + + boost::shared_ptr aPoint2 = + boost::dynamic_pointer_cast(aData->attribute(LINE_ATTR_END)); + aPoint2->setValue(aPoint2->x() + theDeltaX, aPoint2->y() + theDeltaY); +} + +double SketchPlugin_Line::distanceToPoint(const boost::shared_ptr& thePoint) +{ + double aDelta = 0; + + boost::shared_ptr aData = data(); + boost::shared_ptr aPoint1 = + boost::dynamic_pointer_cast(aData->attribute(LINE_ATTR_START)); + boost::shared_ptr aPoint2 = + boost::dynamic_pointer_cast(aData->attribute(LINE_ATTR_END)); + + GeomAPI_Lin2d aLin2d(aPoint1->x(), aPoint1->y(), aPoint2->x(), aPoint2->y()); + + if (false/*projection*/) { // TODO: if it has not been necessary, remove this block + boost::shared_ptr aResult = aLin2d.project(thePoint); + aDelta = aResult->distance(thePoint); + } + else { // distance + aDelta = aLin2d.distance(thePoint); + } + + return aDelta; +}