X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FGeomAPI%2FGeomAPI_Trsf.cpp;h=8114b0595da397cbadcc5d2b39d5e26315437f59;hb=ae92361e7d1375e324cc19e7b6a2962750e1d7ce;hp=f0df9471f0ecd3238bbfbf5ffcfed2345b502934;hpb=37d3df3f82d632f471935a042292d5ead9e4a2f9;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Trsf.cpp b/src/GeomAPI/GeomAPI_Trsf.cpp index f0df9471f..8114b0595 100644 --- a/src/GeomAPI/GeomAPI_Trsf.cpp +++ b/src/GeomAPI/GeomAPI_Trsf.cpp @@ -1,10 +1,21 @@ -// Copyright (C) 2014-2016 CEA/DEN, EDF R&D - -// File: GeomAPI_Trsf.cpp -// Created: 13 Jul 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 #include @@ -13,6 +24,7 @@ #include #include +#include #include #define MY_TRSF implPtr() @@ -27,7 +39,7 @@ GeomAPI_Trsf::GeomAPI_Trsf() //================================================================================================= GeomAPI_Trsf::GeomAPI_Trsf(void* theTrsf) -: GeomAPI_Interface(theTrsf) +: GeomAPI_Interface((gp_Trsf*)theTrsf) { } @@ -94,3 +106,10 @@ void GeomAPI_Trsf::setSymmetry(const std::shared_ptr thePlane) { MY_TRSF->SetMirror(thePlane->impl()); } + +//================================================================================================= +void GeomAPI_Trsf::setScale(const std::shared_ptr& theCenter, + const double theScale) +{ + MY_TRSF->SetScale(theCenter->impl(), theScale); +}