X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_PlanarEdges.h;h=c26ad2505e180e386ff739d3852b85012581ab52;hb=c65c7a084cf32f54c8d8a93fceace414c3b0fb21;hp=a9cd54a31679cd0453b185caa936f52235f6b06d;hpb=38afbd899a8645c83e17f2c24a17a2b7414911b4;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_PlanarEdges.h b/src/GeomAPI/GeomAPI_PlanarEdges.h index a9cd54a31..c26ad2505 100644 --- a/src/GeomAPI/GeomAPI_PlanarEdges.h +++ b/src/GeomAPI/GeomAPI_PlanarEdges.h @@ -11,6 +11,7 @@ #include "GeomAPI_Edge.h" #include "GeomAPI_Pnt.h" #include "GeomAPI_Dir.h" +#include "GeomAPI_Ax3.h" #include @@ -18,48 +19,53 @@ /**\class GeomAPI_PlanarEdges * \ingroup DataModel - * \brief Interface to the edge object + * \brief Interface to the set of edges located in one plane + * + * Normally this interface corresponds to theedges of the sketch */ - class GeomAPI_PlanarEdges : public GeomAPI_Shape { public: /// Creation of empty (null) shape GEOMAPI_EXPORT GeomAPI_PlanarEdges(); + /// Returns whether the shape is alone vertex GEOMAPI_EXPORT virtual bool isVertex() const; - /// Returns whether the shape is an edge + /// Returns whether the shape is alone edge GEOMAPI_EXPORT virtual bool isEdge() const; - + /// Appends the edge to the set GEOMAPI_EXPORT void addEdge(std::shared_ptr theEdge); + /// Returns the list of edges in this interface GEOMAPI_EXPORT std::list > getEdges(); /// Returns True if the wire is defined in a plane GEOMAPI_EXPORT bool hasPlane() const; - /// Set/Get origin point - GEOMAPI_EXPORT void setOrigin(const std::shared_ptr& theOrigin); - + /// Returns the plane origin point GEOMAPI_EXPORT std::shared_ptr origin() const; - /// Set/Get X direction vector - GEOMAPI_EXPORT void setDirX(const std::shared_ptr& theDirX); + /// Returns X direction vector GEOMAPI_EXPORT std::shared_ptr dirX() const; - /// Set/Get Y direction vector - GEOMAPI_EXPORT void setDirY(const std::shared_ptr& theDirY); + /// Returns Y direction vector GEOMAPI_EXPORT std::shared_ptr dirY() const; - /// Set/Get Normal direction vector - GEOMAPI_EXPORT void setNorm(const std::shared_ptr& theNorm); + /// Returns Z direction vector GEOMAPI_EXPORT std::shared_ptr norm() const; + /// Set working plane + /// \param theOrigin origin of the plane axis + /// \param theDirX X direction of the plane axis + /// \param theDirY Y direction of the plane axis + /// \param theNorm normal direction of the plane axis + GEOMAPI_EXPORT void setPlane(const std::shared_ptr& theOrigin, + const std::shared_ptr& theDirX, + const std::shared_ptr& theNorm); + private: - std::shared_ptr myOrigin; - std::shared_ptr myDirX; - std::shared_ptr myDirY; - std::shared_ptr myNorm; + + std::shared_ptr myPlane; }; #endif