X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_Rotation.h;h=cc18518aa9aa5d8a2e4c28a2ed5d8c59f02b71be;hb=cb0a7bdbea9f94ea30879522b230cbe773b60dc3;hp=4a884451d0f73aa3591b08605d6f11ed7c489bb4;hpb=c4eab94a20a0d93100549a210582d46409fec1cc;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_Rotation.h b/src/GeomAlgoAPI/GeomAlgoAPI_Rotation.h index 4a884451d..cc18518aa 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_Rotation.h +++ b/src/GeomAlgoAPI/GeomAlgoAPI_Rotation.h @@ -21,23 +21,17 @@ #define GeomAlgoAPI_Rotation_H_ #include -#include +#include -#include -#include +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 theCenterPoint, std::shared_ptr theStartPoint, std::shared_ptr 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 mySourceShape; /// Shape to be rotated. - std::shared_ptr myAxis; /// Rotation axis. - double myAngle; /// Rotation angle. - std::shared_ptr myCenterPoint; /// Rotation center point. - std::shared_ptr myStartPoint; /// Rotation start point. - std::shared_ptr myEndPoint; /// Rotation end point. }; #endif