X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Pnt.h;h=17c2c0db81f000b8f5f4b1f0a4bf6be8aa2dadd7;hb=e32f95642855a63da2727cb324ce2a75632a712f;hp=6e4e527d554ce6795f36f8113899b184e0b3ebc5;hpb=8dc74f82810d5f597b78633b457efb0ef4f89f9f;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Pnt.h b/src/GeomAPI/GeomAPI_Pnt.h index 6e4e527d5..17c2c0db8 100644 --- a/src/GeomAPI/GeomAPI_Pnt.h +++ b/src/GeomAPI/GeomAPI_Pnt.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_Pnt.hxx // Created: 23 Apr 2014 // Author: Mikhail PONIKAROV @@ -6,43 +8,73 @@ #define GeomAPI_Pnt_H_ #include -#include +#include class GeomAPI_XYZ; +class GeomAPI_Pnt2d; +class GeomAPI_Dir; +class GeomAPI_Pln; /**\class GeomAPI_Pnt * \ingroup DataModel * \brief 3D point defined by three coordinates */ -class GEOMAPI_EXPORT GeomAPI_Pnt : public GeomAPI_Interface +class GeomAPI_Pnt : public GeomAPI_Interface { public: /// Creation of point by coordinates + GEOMAPI_EXPORT GeomAPI_Pnt(const double theX, const double theY, const double theZ); /// Creation of point by coordinates - GeomAPI_Pnt(const boost::shared_ptr& theCoords); + GEOMAPI_EXPORT + GeomAPI_Pnt(const std::shared_ptr& theCoords); /// returns X coordinate + GEOMAPI_EXPORT double x() const; /// returns Y coordinate + GEOMAPI_EXPORT double y() const; /// returns Z coordinate + GEOMAPI_EXPORT double z() const; /// sets X coordinate + GEOMAPI_EXPORT void setX(const double theX); /// sets Y coordinate + GEOMAPI_EXPORT void setY(const double theY); /// sets Z coordinate + GEOMAPI_EXPORT void setZ(const double theZ); /// returns coordinates of the point - const boost::shared_ptr xyz(); + GEOMAPI_EXPORT + const std::shared_ptr xyz(); /// 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; + + /// Projects a point to the plane defined by the origin and 2 axes vectors in this plane + GEOMAPI_EXPORT + std::shared_ptr to2D(const std::shared_ptr& theOrigin, + const std::shared_ptr& theDirX, + const std::shared_ptr& theDirY); + + /// Projects a point to the plane defined by the origin and 2 axes vectors in this plane + GEOMAPI_EXPORT + std::shared_ptr to2D(const std::shared_ptr& thePln) const; + + /// Translates the point along direction theDir on distance theDist + GEOMAPI_EXPORT + void translate(const std::shared_ptr& theDir, double theDist); }; #endif -