Salome HOME
2D point selection in multi-rotation/multi-translation.
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_MultiRotation.h
index 416f477b14ef26bfe20fb94fbb89ad319e53dbd5..97528ebc0aaa6c5d42582d0e0cb7656956442bc7 100644 (file)
@@ -65,12 +65,6 @@ class SketchPlugin_MultiRotation : public SketchPlugin_ConstraintBase
     static const std::string MY_ANGLE_ID("MultiRotationAngle");
     return MY_ANGLE_ID;
   }
-  /// End point of translation
-  inline static const std::string& ANGLE_FULL_ID()
-  {
-    static const std::string MY_ANGLE_FULL_ID("MultiRotationFullAngle");
-    return MY_ANGLE_FULL_ID;
-  }
 
   /// Total number of objects, initial and translated objects
   inline static const std::string& NUMBER_OF_OBJECTS_ID()
@@ -97,13 +91,10 @@ class SketchPlugin_MultiRotation : public SketchPlugin_ConstraintBase
 
 private:
   ObjectPtr copyFeature(ObjectPtr theObject);
-  void rotateFeature(ObjectPtr theInitial, ObjectPtr theTarget,
-                     double theCenterX, double theCenterY, double theAngle);
+  //void rotateFeature(ObjectPtr theInitial, ObjectPtr theTarget,
+  //                   double theCenterX, double theCenterY, double theAngle);
 
   bool updateFullAngleValue();
-
-private:
-  bool myBlockAngle; /// a boolean state to avoid recusive angle change in attributeChanged
 };
 
 #endif