Salome HOME
Copyright update 2020
[modules/shaper.git] / src / GeomAPI / GeomAPI_Trsf.cpp
index 01a0e3f776fb11a1604e25ba045b40c07530dccf..a72e6829f96af41cd82bebd63551bc165dd51e57 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2020  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
 //
 // 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
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or
-// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
 #include<GeomAPI_Trsf.h>
@@ -40,7 +39,7 @@ GeomAPI_Trsf::GeomAPI_Trsf()
 
 //=================================================================================================
 GeomAPI_Trsf::GeomAPI_Trsf(void* theTrsf)
-: GeomAPI_Interface(theTrsf)
+: GeomAPI_Interface((gp_Trsf*)theTrsf)
 {
 }
 
@@ -107,3 +106,10 @@ void GeomAPI_Trsf::setSymmetry(const std::shared_ptr<GeomAPI_Ax2> thePlane)
 {
   MY_TRSF->SetMirror(thePlane->impl<gp_Ax2>());
 }
+
+//=================================================================================================
+void GeomAPI_Trsf::setScale(const std::shared_ptr<GeomAPI_Pnt>& theCenter,
+                            const double theScale)
+{
+  MY_TRSF->SetScale(theCenter->impl<gp_Pnt>(), theScale);
+}