X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_XY.h;h=e2b51eda7ec3b53b46cc0fe266fa0065cb9f110a;hb=d2034a988bc73596aab1bb256ddb02ce9ad2bd5a;hp=0f0187ae64f69a6a54b7f5a33a2ceff367ae035f;hpb=98be939e3a6c58498b6dd763301d3e5fa50bf397;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_XY.h b/src/GeomAPI/GeomAPI_XY.h index 0f0187ae6..e2b51eda7 100644 --- a/src/GeomAPI/GeomAPI_XY.h +++ b/src/GeomAPI/GeomAPI_XY.h @@ -1,46 +1,75 @@ -// File: GeomAPI_XY.hxx -// 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 +// -#ifndef GeomAPI_XY_HeaderFile -#define GeomAPI_XY_HeaderFile +#ifndef GeomAPI_XY_H_ +#define GeomAPI_XY_H_ #include -#include +#include /**\class GeomAPI_XY * \ingroup DataModel * \brief 2 coordinates: they may represent vector or point or something else */ -class GEOMAPI_EXPORT GeomAPI_XY: public GeomAPI_Interface +class GeomAPI_XY : public GeomAPI_Interface { -public: + public: /// Creation by coordinates + GEOMAPI_EXPORT GeomAPI_XY(const double theX, const double theY); /// returns X coordinate + GEOMAPI_EXPORT double x() const; /// returns Y coordinate + GEOMAPI_EXPORT double y() const; /// sets X coordinate + GEOMAPI_EXPORT void setX(const double theX); /// sets Y coordinate + GEOMAPI_EXPORT void setY(const double theY); /// result is sum of coordinates of this and the given argument - const boost::shared_ptr added(const boost::shared_ptr& theArg); + GEOMAPI_EXPORT + const std::shared_ptr added(const std::shared_ptr& theArg); + /// result is difference between coordinates of this and the given argument + GEOMAPI_EXPORT + const std::shared_ptr decreased(const std::shared_ptr& theArg); /// result is coordinates multiplied by the argument - const boost::shared_ptr multiplied(const double theArg); + GEOMAPI_EXPORT + const std::shared_ptr multiplied(const double theArg); /// result is a scalar product of two triplets - double dot(const boost::shared_ptr& theArg) const; + GEOMAPI_EXPORT + double dot(const std::shared_ptr& theArg) const; /// result is a cross product of two triplets - double cross(const boost::shared_ptr& theArg) const; + GEOMAPI_EXPORT + double cross(const std::shared_ptr& theArg) const; /// Distance between two pairs - double distance(const boost::shared_ptr& theOther) const; + GEOMAPI_EXPORT + double distance(const std::shared_ptr& theOther) const; }; #endif