X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_XY.h;h=8fdf2853eacf5e51ea377e7ddfba5c24a893834c;hb=592f9b635dddfc888cc2e14d8e996e0e21d904b3;hp=3649db87d9166f8517658b3ff3dff86129b86978;hpb=3874b57fe5aba25ff5aee2a07654fc23c1ee8eb0;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_XY.h b/src/GeomAPI/GeomAPI_XY.h index 3649db87d..8fdf2853e 100644 --- a/src/GeomAPI/GeomAPI_XY.h +++ b/src/GeomAPI/GeomAPI_XY.h @@ -15,33 +15,46 @@ * \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 + 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 + GEOMAPI_EXPORT const std::shared_ptr multiplied(const double theArg); /// result is a scalar product of two triplets + GEOMAPI_EXPORT double dot(const std::shared_ptr& theArg) const; /// result is a cross product of two triplets + GEOMAPI_EXPORT double cross(const std::shared_ptr& theArg) const; /// Distance between two pairs + GEOMAPI_EXPORT double distance(const std::shared_ptr& theOther) const; };