X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Transformation.h;h=068ac7c09b72606e41bb24c48e9303de31b51421;hb=176403004ff97696f3c0b5f8bdf48692177fb34a;hp=6ba9bc8e46ae628dbff3fbef9b1cd1e206ec9903;hpb=303a8f8c0a451e65f1ad390f8b73d3408bf28425;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Transformation.h b/src/SketcherPrs/SketcherPrs_Transformation.h index 6ba9bc8e4..068ac7c09 100644 --- a/src/SketcherPrs/SketcherPrs_Transformation.h +++ b/src/SketcherPrs/SketcherPrs_Transformation.h @@ -24,11 +24,19 @@ public: /// Constructor /// \param theConstraint a constraint feature /// \param thePlane a coordinate plane of current sketch + /// \param isTranslation a flag is it translation or rotation Standard_EXPORT SketcherPrs_Transformation(ModelAPI_Feature* theConstraint, const std::shared_ptr& thePlane, bool isTranslation); DEFINE_STANDARD_RTTI(SketcherPrs_Transformation) + + /// Returns true if the constraint feature arguments are correcly filled to build AIS presentation + /// \param theConstraint a constraint feature + /// \param thePlane a coordinate plane of current sketch + /// \return boolean result value + static bool IsReadyToDisplay(ModelAPI_Feature* theConstraint, + const std::shared_ptr& thePlane); protected: virtual const char* iconName() const { return myIsTranslation? "translate.png" : "rotate.png"; } @@ -39,7 +47,7 @@ protected: /// Update myPntArray according to presentation positions /// \return true in case of success - virtual bool updatePoints(double theStep) const; + virtual bool updateIfReadyToDisplay(double theStep) const; private: bool myIsTranslation;