X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FGeomAPI%2FGeomAPI_Pnt.h;h=44f203a7735232d5b8691da10a3b3f2b3b62f44e;hb=9e10a25021a539ae9bb44e85e244a8e3fa8119ed;hp=835e24939a601e84990387ff7e405960d0bd53eb;hpb=abcdb8af07666bf4ac9411fb73b19f395ee274bd;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Pnt.h b/src/GeomAPI/GeomAPI_Pnt.h index 835e24939..44f203a77 100644 --- a/src/GeomAPI/GeomAPI_Pnt.h +++ b/src/GeomAPI/GeomAPI_Pnt.h @@ -13,6 +13,7 @@ class GeomAPI_XYZ; class GeomAPI_Pnt2d; class GeomAPI_Dir; +class GeomAPI_Pln; /**\class GeomAPI_Pnt * \ingroup DataModel @@ -52,6 +53,9 @@ class GEOMAPI_EXPORT GeomAPI_Pnt : public GeomAPI_Interface 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); };