X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_FaceBuilder.h;h=c33013f02e51d5c102396fcffc3068296b4af604;hb=f0cec241aae9ca16d86e166f45cb5c4987d2c792;hp=49ec19c3084da7dea685cc74fd7bcfd497f60111;hpb=5dfebcc3a72f75f043de9880419b39f073af6819;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h b/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h index 49ec19c30..c33013f02 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h +++ b/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h @@ -7,42 +7,52 @@ #ifndef GeomAlgoAPI_FaceBuilder_H_ #define GeomAlgoAPI_FaceBuilder_H_ -#include -#include -#include -#include -#include +#include "GeomAlgoAPI.h" + #include -/**\class GeomAlgoAPI_FaceBuilder - * \ingroup DataAlgo - * \brief Allows to create face-shapes by different parameters - */ +class GeomAPI_Dir; +class GeomAPI_Face; +class GeomAPI_Pln; +class GeomAPI_Pnt; +class GeomAPI_Vertex; +/// \class GeomAlgoAPI_FaceBuilder +/// \ingroup DataAlgo +/// \brief Allows to create face-shapes by different parameters class GEOMALGOAPI_EXPORT GeomAlgoAPI_FaceBuilder { public: /// Creates square planar face by given point of the center, /// normal to the plane and size of square - static std::shared_ptr square(std::shared_ptr theCenter, - std::shared_ptr theNormal, - const double theSize); + static std::shared_ptr squareFace(const std::shared_ptr theCenter, + const std::shared_ptr theNormal, + const double theSize); /// Creates square planar face by given point of the center, /// normal to the plane and size of square - static std::shared_ptr square(std::shared_ptr thePlane, - const double theSize); - - /// Returns the plane of the planar face. If it is not planar, returns empty ptr. - static std::shared_ptr plane(std::shared_ptr theFace); + static std::shared_ptr squareFace(const std::shared_ptr thePlane, + const double theSize); /// Creates the planar face by given point of the center and normal to the plane. - static std::shared_ptr planarFace(std::shared_ptr theCenter, - std::shared_ptr theNormal); + static std::shared_ptr planarFace(const std::shared_ptr theCenter, + const std::shared_ptr theNormal); /// Creates a planar face by given plane, left lower point and size. - static std::shared_ptr planarFace(std::shared_ptr thePlane, - double theX, double theY, - double theWidth, double theHeight); + static std::shared_ptr planarFace(const std::shared_ptr thePlane, + const double theX, const double theY, + const double theWidth, const double theHeight); + + /// Creates a planar face by three vertices. + static std::shared_ptr planarFaceByThreeVertices(const std::shared_ptr theVertex1, + const std::shared_ptr theVertex2, + const std::shared_ptr theVertex3); + + /// Creates a planar face parallel to theFace and passing through theVertex. + static std::shared_ptr planarFaceByFaceAndVertex(const std::shared_ptr theFace, + const std::shared_ptr theVertex); + + /// Returns the plane of the planar face. If it is not planar, returns empty ptr. + static std::shared_ptr plane(const std::shared_ptr theFace); }; #endif