X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_XY.h;h=3649db87d9166f8517658b3ff3dff86129b86978;hb=aeca03e919a402327655e3f9c133985d9223b873;hp=0f0187ae64f69a6a54b7f5a33a2ceff367ae035f;hpb=98be939e3a6c58498b6dd763301d3e5fa50bf397;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_XY.h b/src/GeomAPI/GeomAPI_XY.h index 0f0187ae6..3649db87d 100644 --- a/src/GeomAPI/GeomAPI_XY.h +++ b/src/GeomAPI/GeomAPI_XY.h @@ -1,21 +1,23 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_XY.hxx // Created: 30 May 2014 // Author: Artem ZHIDKOV -#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_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