X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Pnt2d.h;h=2ab01f2a35a7836cd2ab089ec3415a0c6298eec6;hb=bdbfb368d71ed11cc0391354a7d86c880cd94949;hp=a1faf626c561b1e5df015cb502575af70cbab1c4;hpb=73c02c2103a34ec5d2ac48a345757dee0e0d42f9;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Pnt2d.h b/src/GeomAPI/GeomAPI_Pnt2d.h index a1faf626c..2ab01f2a3 100644 --- a/src/GeomAPI/GeomAPI_Pnt2d.h +++ b/src/GeomAPI/GeomAPI_Pnt2d.h @@ -1,43 +1,65 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_Pnt2d.h // Created: 29 May 2014 // Author: Artem ZHIDKOV -#ifndef GeomAPI_Pnt2d_HeaderFile -#define GeomAPI_Pnt2d_HeaderFile +#ifndef GeomAPI_Pnt2d_H_ +#define GeomAPI_Pnt2d_H_ #include -#include +#include class GeomAPI_XY; +class GeomAPI_Pnt; +class GeomAPI_Dir; /**\class GeomAPI_Pnt2d * \ingroup DataModel * \brief 2D point defined by two coordinates */ -class GEOMAPI_EXPORT GeomAPI_Pnt2d: public GeomAPI_Interface +class GeomAPI_Pnt2d : public GeomAPI_Interface { -public: + public: /// Creation of point by coordinates + GEOMAPI_EXPORT GeomAPI_Pnt2d(const double theX, const double theY); /// Creation of point by coordinates - GeomAPI_Pnt2d(const boost::shared_ptr& theCoords); + GEOMAPI_EXPORT + GeomAPI_Pnt2d(const std::shared_ptr& theCoords); /// 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); + /// Returns the 3D point + GEOMAPI_EXPORT + std::shared_ptr to3D(const std::shared_ptr& theOrigin, + const std::shared_ptr& theDirX, + const std::shared_ptr& theDirY); + /// returns coordinates of the point - const boost::shared_ptr xy(); + GEOMAPI_EXPORT + const std::shared_ptr xy(); /// Distance between two points - double distance(const boost::shared_ptr& theOther) const; + GEOMAPI_EXPORT + double distance(const std::shared_ptr& theOther) const; + + /// Returns whether the distance between two points is less then precision confusion + GEOMAPI_EXPORT + bool isEqual(const std::shared_ptr& theOther) const; }; #endif