X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_FaceBuilder.h;h=23173e50b4d1bd674fa112179295f9e168fa80a5;hb=8438647a5fb5186e3b5893fd69092792edef9ca8;hp=15243f233099d9f5e41ee61dc5f608d39e15b386;hpb=de0f49686ec6655ddc5816c8fa5383964662aec4;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h b/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h index 15243f233..23173e50b 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h +++ b/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h @@ -1,28 +1,57 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAlgoAPI_FaceBuilder.h // Created: 23 Apr 2014 // Author: Mikhail PONIKAROV -#ifndef GeomAlgoAPI_FaceBuilder_HeaderFile -#define GeomAlgoAPI_FaceBuilder_HeaderFile +#ifndef GeomAlgoAPI_FaceBuilder_H_ +#define GeomAlgoAPI_FaceBuilder_H_ + +#include "GeomAlgoAPI.h" -#include -#include -#include -#include #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 std::shared_ptr square(std::shared_ptr theCenter, - std::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); + + /// 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