X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_XY.h;h=3649db87d9166f8517658b3ff3dff86129b86978;hb=6ebb0f00477866099d80a8373d2b306d8ed0906e;hp=1ff89a8f6c13f25e1e7b81a5e38a7b840e7d1a79;hpb=4cbd08290dc7a540e3fa93913d484e8336df90d9;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_XY.h b/src/GeomAPI/GeomAPI_XY.h index 1ff89a8f6..3649db87d 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,16 +8,16 @@ #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_EXPORT GeomAPI_XY : public GeomAPI_Interface { -public: + public: /// Creation by coordinates GeomAPI_XY(const double theX, const double theY); @@ -30,17 +32,17 @@ public: 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); + const std::shared_ptr added(const std::shared_ptr& theArg); /// result is coordinates multiplied by the argument - const boost::shared_ptr multiplied(const double theArg); + const std::shared_ptr multiplied(const double theArg); /// result is a scalar product of two triplets - double dot(const boost::shared_ptr& theArg) const; + double dot(const std::shared_ptr& theArg) const; /// result is a cross product of two triplets - double cross(const boost::shared_ptr& theArg) const; + double cross(const std::shared_ptr& theArg) const; /// Distance between two pairs - double distance(const boost::shared_ptr& theOther) const; + double distance(const std::shared_ptr& theOther) const; }; #endif