X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_XY.cpp;h=3f49c09438771ff42ef4a456b76c6f9317bfeff7;hb=4df4bd61da1ea5d357671c819a8ced6ec9ba77ac;hp=ebe52e065e53b893c0787b242e136e0389ebc8ba;hpb=f1cd93fd02a54259f72e3191d037323a496b2bef;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_XY.cpp b/src/GeomAPI/GeomAPI_XY.cpp index ebe52e065..3f49c0943 100644 --- a/src/GeomAPI/GeomAPI_XY.cpp +++ b/src/GeomAPI/GeomAPI_XY.cpp @@ -1,14 +1,28 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: GeomAPI_XY.cpp -// Created: 30 May 2014 -// Author: Artem ZHIDKOV +// Copyright (C) 2014-2017 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 +// #include #include -#define MY_XY static_cast(myImpl) +#define MY_XY implPtr() GeomAPI_XY::GeomAPI_XY(const double theX, const double theY) : GeomAPI_Interface(new gp_XY(theX, theY)) @@ -37,7 +51,16 @@ void GeomAPI_XY::setY(const double theY) const std::shared_ptr GeomAPI_XY::added(const std::shared_ptr& theArg) { - std::shared_ptr aResult(new GeomAPI_XY(MY_XY->X() + theArg->x(), MY_XY->Y() + theArg->y())); + std::shared_ptr aResult(new GeomAPI_XY( + MY_XY->X() + theArg->x(), MY_XY->Y() + theArg->y())); + return aResult; +} + +const std::shared_ptr GeomAPI_XY::decreased( + const std::shared_ptr& theArg) +{ + std::shared_ptr aResult(new GeomAPI_XY( + MY_XY->X() - theArg->x(), MY_XY->Y() - theArg->y())); return aResult; }