X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Pnt.h;h=44f203a7735232d5b8691da10a3b3f2b3b62f44e;hb=aa48919bb1ecb71f07d9ac5fcd1bad170e7ed547;hp=8f80bef18628e78d60994c2bc8b313ed7b77f061;hpb=de0f49686ec6655ddc5816c8fa5383964662aec4;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Pnt.h b/src/GeomAPI/GeomAPI_Pnt.h index 8f80bef18..44f203a77 100644 --- a/src/GeomAPI/GeomAPI_Pnt.h +++ b/src/GeomAPI/GeomAPI_Pnt.h @@ -1,22 +1,32 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_Pnt.hxx // Created: 23 Apr 2014 // Author: Mikhail PONIKAROV -#ifndef GeomAPI_Pnt_HeaderFile -#define GeomAPI_Pnt_HeaderFile +#ifndef GeomAPI_Pnt_H_ +#define GeomAPI_Pnt_H_ #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_EXPORT GeomAPI_Pnt : public GeomAPI_Interface { -public: + public: /// Creation of point by coordinates GeomAPI_Pnt(const double theX, const double theY, const double theZ); + /// Creation of point by coordinates + GeomAPI_Pnt(const std::shared_ptr& theCoords); /// returns X coordinate double x() const; @@ -31,7 +41,23 @@ public: void setY(const double theY); /// sets Z coordinate void setZ(const double theZ); + + /// returns coordinates of the point + const std::shared_ptr xyz(); + + /// Distance between two points + double distance(const std::shared_ptr& theOther) const; + + /// Projects a point to the plane defined by the origin and 2 axes vectors in this plane + 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 + std::shared_ptr to2D(const std::shared_ptr& thePln) const; + + /// Translates the point along direction theDir on distance theDist + void translate(const std::shared_ptr& theDir, double theDist); }; #endif -