Salome HOME
Simplification of environment due to SALOME standards
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_Transformation.h
index 6ba9bc8e46ae628dbff3fbef9b1cd1e206ec9903..068ac7c09b72606e41bb24c48e9303de31b51421 100644 (file)
@@ -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<GeomAPI_Ax3>& 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<GeomAPI_Ax3>& 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;