X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Ax3.h;h=589fbf70dd4f8ba79c556f696ace79c7e780ecfa;hb=124fc0a11b2b9d601b73b9a60f3541e8b47b910b;hp=6a554e2b393b3f2516cd7ed9a368fccb92524bf5;hpb=9bea53a5d0fc5c6aec52f4732ec45a9dcbe7354d;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Ax3.h b/src/GeomAPI/GeomAPI_Ax3.h index 6a554e2b3..589fbf70d 100644 --- a/src/GeomAPI/GeomAPI_Ax3.h +++ b/src/GeomAPI/GeomAPI_Ax3.h @@ -16,54 +16,65 @@ * \brief The class represents a coordinate plane which is 2d plane with X and Y directions * and origin */ -class GEOMAPI_EXPORT GeomAPI_Ax3 : public GeomAPI_Interface +class GeomAPI_Ax3 : public GeomAPI_Interface { public: /// Default constructor + GEOMAPI_EXPORT GeomAPI_Ax3(); - /// Ñonstructor + /// Constructor /// \param theOrigin point of origin /// \param theDirX direction of X axis - /// \param theDirY direction of Y axis /// \param theNorm direction of normal vector + GEOMAPI_EXPORT GeomAPI_Ax3(std::shared_ptr theOrigin, std::shared_ptr theDirX, std::shared_ptr theNorm); /// Sets origin point + GEOMAPI_EXPORT void setOrigin(const std::shared_ptr& theOrigin); /// Returns the plane origin point + GEOMAPI_EXPORT std::shared_ptr origin() const; /// Sets X direction vector + GEOMAPI_EXPORT void setDirX(const std::shared_ptr& theDirX); /// Returns X direction vector + GEOMAPI_EXPORT std::shared_ptr dirX() const; /// Sets Y direction vector + GEOMAPI_EXPORT void setDirY(const std::shared_ptr& theDirY); /// Returns Y direction vector + GEOMAPI_EXPORT std::shared_ptr dirY() const; /// Sets Z direction vector - void setNorm(const std::shared_ptr& theNorm); + GEOMAPI_EXPORT + void setNormal(const std::shared_ptr& theNorm); /// Returns Z direction vector - std::shared_ptr norm() const; + GEOMAPI_EXPORT + std::shared_ptr normal() const; /// Converts 2d coordinates from the plane to 3d space point /// \param theX X coordinate /// \param theY Y coordinate + GEOMAPI_EXPORT std::shared_ptr to3D(double theX, double theY) const; /// Converts 3d to 2d coordinates of the plane /// \param theX X coordinate /// \param theY Y coordinate /// \param theZ Z coordinate + GEOMAPI_EXPORT std::shared_ptr to2D(double theX, double theY, double theZ) const; };