X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_Arc.h;h=d3d9e597d29940e5f175ba04eb8b6a88e8d739de;hb=22b8f7fe2eccd1eeee183f52834b191b1e904dc3;hp=efb66cf4f4f3508b69c2c23e73b2355dd403233e;hpb=a9a7883a28655bd30a20a9233b0a572f697e9510;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Arc.h b/src/SketchPlugin/SketchPlugin_Arc.h index efb66cf4f..d3d9e597d 100644 --- a/src/SketchPlugin/SketchPlugin_Arc.h +++ b/src/SketchPlugin/SketchPlugin_Arc.h @@ -27,6 +27,10 @@ class SketchPlugin_Arc : public SketchPlugin_SketchEntity, public GeomAPI_IPrese /// to avoid (if possible) additional modification of changed coordinate (issue #855) double myXEndBefore, myYEndBefore; + /// to define in which direction draw arc + bool myForwardDirection; + double myParamBefore; + public: /// Arc feature kind inline static const std::string& ID() @@ -82,10 +86,6 @@ class SketchPlugin_Arc : public SketchPlugin_SketchEntity, public GeomAPI_IPrese /// \param theDeltaY the delta for Y coordinate is moved SKETCHPLUGIN_EXPORT virtual void move(const double theDeltaX, const double theDeltaY); - /// Return the distance between the feature and the point - /// \param thePoint the point - virtual double distanceToPoint(const std::shared_ptr& thePoint); - /// Use plugin manager for features creation SketchPlugin_Arc();