X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Trsf.h;h=822afde1d6a25402570c61bd4f5050d8c16cba52;hb=bdbfb368d71ed11cc0391354a7d86c880cd94949;hp=a49ce81c6c92c7656d1dc72e5fdc5ea8b180b2dd;hpb=c282f578819f83c2f87755170f551813563bf376;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Trsf.h b/src/GeomAPI/GeomAPI_Trsf.h index a49ce81c6..822afde1d 100644 --- a/src/GeomAPI/GeomAPI_Trsf.h +++ b/src/GeomAPI/GeomAPI_Trsf.h @@ -59,6 +59,15 @@ class GeomAPI_Trsf : public GeomAPI_Interface 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. */ @@ -73,13 +82,6 @@ class GeomAPI_Trsf : public GeomAPI_Interface * \param[in] thePlane symmetry plane. */ GEOMAPI_EXPORT void setSymmetry(const std::shared_ptr thePlane); - - /** \brief Sets a scale transformation using a factor. - * \param[in] theCenterPoint center point. - * \param[in] theScaleFactor scale factor. - */ - GEOMAPI_EXPORT void setScale(const std::shared_ptr theCenterPoint, - const double theScaleFactor); }; #endif