X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Trsf.h;h=fa765c2b1a9d575986a315cbd0ee53028ba01d27;hb=06e7f5859095193fc7f498bd89a7d28009794f53;hp=47bcb2b3ed0ffbcfdaf39dd5deba16a54ff6b6b7;hpb=81cc2c23e3109a51d178e63fe5b8a0a4625287b6;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Trsf.h b/src/GeomAPI/GeomAPI_Trsf.h index 47bcb2b3e..fa765c2b1 100644 --- a/src/GeomAPI/GeomAPI_Trsf.h +++ b/src/GeomAPI/GeomAPI_Trsf.h @@ -1,10 +1,21 @@ -// Copyright (C) 2014-2016 CEA/DEN, EDF R&D - -// File: GeomAPI_XYZ.hxx -// Created: 13 July 2015 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2023 CEA, EDF +// +// 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) : 17 Nov 2016 #ifndef GeomAPI_Trsf_H_ #define GeomAPI_Trsf_H_ @@ -13,6 +24,8 @@ #include class GeomAPI_Ax1; +class GeomAPI_Ax2; +class GeomAPI_Pnt; /**\class GeomAPI_Trsf * \ingroup DataModel @@ -33,7 +46,7 @@ class GeomAPI_Trsf : public GeomAPI_Interface */ GEOMAPI_EXPORT void setTranslation(const std::shared_ptr theAxis, const double theDistance); - + /** \brief Sets a translation transformation using three coordinates. * \param[in] theDx x coordinate of the translation vector * \param[in] theDy y coordinate of the translation vector @@ -43,13 +56,54 @@ class GeomAPI_Trsf : public GeomAPI_Interface const double theDy, const double theDz); + /** \brief Sets a translation transformation using two points. + * \param[in] theStartPoint Start point of the translation vector. + * \param[in] theEndPoint End point of the translation vector. + */ + GEOMAPI_EXPORT void setTranslation(const std::shared_ptr theStartPoint, + const std::shared_ptr theEndPoint); + /** \brief Sets a rotation transformation. * \param[in] theAxis rotation axis. * \param[in] theAngle rotation angle(in degree). */ GEOMAPI_EXPORT void setRotation(const std::shared_ptr theAxis, const double theAngle); + + /** \brief Sets a rotation transformation using three points. + * \param[in] theCenterPoint rotation center. + * \param[in] theStartPoint start rotation point. + * \param[in] theEndPoint end rotation point. + */ + GEOMAPI_EXPORT void setRotation(const std::shared_ptr theCenterPoint, + const std::shared_ptr theStartPoint, + const std::shared_ptr theEndPoint); + + /** \brief Sets a point symmetry transformation. + * \param[in] thePoint symmetry point. + */ + GEOMAPI_EXPORT void setSymmetry(const std::shared_ptr thePoint); + + /** \brief Sets an axis symmetry transformation. + * \param[in] theAxis symmetry axis. + */ + GEOMAPI_EXPORT void setSymmetry(const std::shared_ptr theAxis); + + /** \brief Sets a plane symmetry transformation. + * \param[in] thePlane symmetry plane. + */ + GEOMAPI_EXPORT void setSymmetry(const std::shared_ptr thePlane); + + /** \brief Sets the scaling transformation. + * \param[in] theCenter scaling origin. + * \param[in] theScale scaling factor. + */ + GEOMAPI_EXPORT void setScale(const std::shared_ptr& theCenter, + const double theScale); }; +//! Pointer on the object +typedef std::shared_ptr GeomTrsfPtr; + #endif