X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_ConstraintDistance.h;h=cbd6ccf37f6ac2a5773f443744972c64149720ad;hb=64fc7e4fdd63997ec7a502b233ef5f88186d5bbb;hp=9bc3d5d06cfe07cabe52ddb9e8c220ba7f13ecf2;hpb=85253719b1f5e630551c2590d23deab11db55fe1;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_ConstraintDistance.h b/src/SketchPlugin/SketchPlugin_ConstraintDistance.h index 9bc3d5d06..cbd6ccf37 100644 --- a/src/SketchPlugin/SketchPlugin_ConstraintDistance.h +++ b/src/SketchPlugin/SketchPlugin_ConstraintDistance.h @@ -12,6 +12,8 @@ #include "SketchPlugin_Sketch.h" #include "ModelAPI_Data.h" +#include + #include class SketchPlugin_Line; @@ -65,22 +67,15 @@ class SketchPlugin_ConstraintDistance : public SketchPlugin_ConstraintBase /// \param theID identifier of changed attribute SKETCHPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID); - /// Returns the current distance between the feature attributes - double calculateCurrentDistance() const; - /// \brief Use plugin manager for features creation SketchPlugin_ConstraintDistance(); -}; -/// Obtain the point object from specified constraint parameter -std::shared_ptr getFeaturePoint(DataPtr theData, - const std::string& theAttribute); - -std::shared_ptr getFeatureLine(DataPtr theData, - const std::string& theAttribute); +protected: + /// Returns the current distance between the feature attributes + double calculateCurrentDistance(); -std::shared_ptr getProjectionPoint( - const std::shared_ptr& theLine, - const std::shared_ptr& thePoint); +private: + bool myFlyoutUpdate; ///< to avoid cyclic dependencies on automatic updates of flyout point +}; #endif