X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FGeomAPI%2FGeomAPI_XY.h;h=8fdf2853eacf5e51ea377e7ddfba5c24a893834c;hb=73502ac782ffc45a3acf665ded34f582b07ec4d5;hp=5e0fef8c975b60b7dccf29a86289f988f167c842;hpb=cd9217d7e87997ec8bc150a6d8c389e742ca0f84;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_XY.h b/src/GeomAPI/GeomAPI_XY.h index 5e0fef8c9..8fdf2853e 100644 --- a/src/GeomAPI/GeomAPI_XY.h +++ b/src/GeomAPI/GeomAPI_XY.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_XY.hxx // Created: 30 May 2014 // Author: Artem ZHIDKOV @@ -6,41 +8,54 @@ #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: /// 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