Salome HOME
Copyright update 2022
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_Rotation.h
index 4a884451d0f73aa3591b08605d6f11ed7c489bb4..5309b6027f38b8179b57f79bebbd86bdee0a7d6c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2022  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 #define GeomAlgoAPI_Rotation_H_
 
 #include <GeomAlgoAPI.h>
-#include <GeomAlgoAPI_MakeShape.h>
+#include <GeomAlgoAPI_Transform.h>
 
-#include <GeomAPI_Ax1.h>
-#include <GeomAPI_Shape.h>
+class GeomAPI_Ax1;
+class GeomAPI_Pnt;
 
 /// \class GeomAlgoAPI_Rotation
 /// \ingroup DataAlgo
 /// \brief Creates a copy of the object by rotating it around the axis.
-class GeomAlgoAPI_Rotation : public GeomAlgoAPI_MakeShape
+class GeomAlgoAPI_Rotation : public GeomAlgoAPI_Transform
 {
 public:
-  /// Type of rotation operation
-  enum MethodType {
-    BY_ANGLE, ///< Rotation by axis and an angle
-    BY_POINTS ///< Rotation by a center and two points
-  };
-
   /// \brief Creates an object which is obtained from current object by rotating it around the axis
   ///        with the angle.
   /// \param[in] theSourceShape  a shape to be rotated.
@@ -57,21 +51,6 @@ public:
                                           std::shared_ptr<GeomAPI_Pnt>   theCenterPoint,
                                           std::shared_ptr<GeomAPI_Pnt>   theStartPoint,
                                           std::shared_ptr<GeomAPI_Pnt>   theEndPoint);
-
-  /// Checks if data for the translation execution is OK.
-  GEOMALGOAPI_EXPORT bool check();
-
-  /// Execute the translation.
-  GEOMALGOAPI_EXPORT void build();
-
-private:
-  MethodType myMethodType; /// Type of method used.
-  std::shared_ptr<GeomAPI_Shape> mySourceShape; /// Shape to be rotated.
-  std::shared_ptr<GeomAPI_Ax1> myAxis; /// Rotation axis.
-  double myAngle; /// Rotation angle.
-  std::shared_ptr<GeomAPI_Pnt> myCenterPoint; /// Rotation center point.
-  std::shared_ptr<GeomAPI_Pnt> myStartPoint; /// Rotation start point.
-  std::shared_ptr<GeomAPI_Pnt> myEndPoint; /// Rotation end point.
 };
 
 #endif