X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_Rotation.h;h=5309b6027f38b8179b57f79bebbd86bdee0a7d6c;hb=88ee9b2b81cf93a6324336b57e30cc8a3a487499;hp=e5aee67e6950878433a009c7270a5d57ff748abd;hpb=6a9d0da0e6b1a8932c4b17767fcb8ad15219b20e;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_Rotation.h b/src/GeomAlgoAPI/GeomAlgoAPI_Rotation.h index e5aee67e6..5309b6027 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_Rotation.h +++ b/src/GeomAlgoAPI/GeomAlgoAPI_Rotation.h @@ -1,32 +1,37 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: GeomAlgoAPI_Rotation.h -// Created: 12 May 2015 -// Author: Dmitry Bobylev +// 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 +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // -// Modified by Clarisse Genrault (CEA) : 03 Mar 2017 #ifndef GeomAlgoAPI_Rotation_H_ #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. @@ -46,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