X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_FaceBuilder.h;h=23173e50b4d1bd674fa112179295f9e168fa80a5;hb=8438647a5fb5186e3b5893fd69092792edef9ca8;hp=d14357a93d24cb737dd60064ad63bc870b38dc4c;hpb=96ff1d1fb2acb842cee193f15492de81060a1d58;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h b/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h index d14357a93..23173e50b 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h +++ b/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAlgoAPI_FaceBuilder.h // Created: 23 Apr 2014 // Author: Mikhail PONIKAROV @@ -5,28 +7,51 @@ #ifndef GeomAlgoAPI_FaceBuilder_H_ #define GeomAlgoAPI_FaceBuilder_H_ -#include -#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: + public: + /// Creates square planar face by given point of the center, + /// normal to the plane and size of square + 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 boost::shared_ptr square(boost::shared_ptr theCenter, - boost::shared_ptr theNormal, const double theSize); + 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(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(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); - /// Returns the plane of the planar face. If it is not planar, returns empty ptr. - static boost::shared_ptr plane(boost::shared_ptr theFace); + /// 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); }; #endif