Salome HOME
2D point selection in multi-rotation/multi-translation.
[modules/shaper.git] / src / SketchSolver / SketchSolver_ConstraintMultiRotation.h
index 6aad12d63d0ec244f42b662c571b54466fe74ae6..6d241f92df261b2b2929157e667242f429b65ca6 100644 (file)
@@ -10,6 +10,8 @@
 #include "SketchSolver.h"
 #include <SketchSolver_ConstraintMulti.h>
 
+#include "GeomDataAPI_Point2D.h"
+
 /** \class   SketchSolver_ConstraintMultiRotation
  *  \ingroup Plugins
  *  \brief   Convert rotated features to the list of SolveSpace constraints
@@ -29,8 +31,9 @@ protected:
   /// \brief Generate list of rotated entities
   /// \param[out] theCenter   central point of rotation
   /// \param[out] theAngle    rotation angle
+  /// \param[out] theFullValue  applying translation using the disstance as a full or single value
   /// \param[out] theEntities list of entities and their rotated copies
-  void getAttributes(EntityWrapperPtr& theCenter, double& theAngle,
+  void getAttributes(EntityWrapperPtr& theCenter, double& theAngle, bool& theFullValue,
                      std::list< std::list<EntityWrapperPtr> >& theEntities);
 
   /// \brief This method is used in derived objects to check consistence of constraint.
@@ -42,7 +45,10 @@ protected:
 private:
   /// \brief Returns name of NUMBER_OF_COPIES parameter for corresponding feature
   virtual const std::string& nameNbObjects();
-  double       myAngle;           ///< angle of rotation
+
+  AttributePoint2DPtr myCenterPointAttribute; ///< a center of rotation
+  double              myAngle;           ///< angle of rotation
+  bool                myIsFullValue;     ///< value whether the angle is a full or single for objects
 };
 
 #endif