X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Pnt.h;h=a3016b94315ad794802fee6078735eea8d82de8a;hb=3d28bcbab2f3ed0e40295e64f4e836caebc19fca;hp=44f203a7735232d5b8691da10a3b3f2b3b62f44e;hpb=7bf19255421b34594c7b0a76d0ce28166d0ce895;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Pnt.h b/src/GeomAPI/GeomAPI_Pnt.h index 44f203a77..a3016b943 100644 --- a/src/GeomAPI/GeomAPI_Pnt.h +++ b/src/GeomAPI/GeomAPI_Pnt.h @@ -20,43 +20,56 @@ class GeomAPI_Pln; * \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_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 + GEOMAPI_EXPORT const std::shared_ptr xyz(); /// Distance between two points + GEOMAPI_EXPORT 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 + 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); };