X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_FaceBuilder.h;h=c33013f02e51d5c102396fcffc3068296b4af604;hb=f0cec241aae9ca16d86e166f45cb5c4987d2c792;hp=61ebfaeb6139ae0a172f1ab2a6c2213b7a82953d;hpb=6654a921211670c15a79a997ca666a174fe8a6f6;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h b/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h index 61ebfaeb6..c33013f02 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h +++ b/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h @@ -1,28 +1,58 @@ +// 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 +#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 boost::shared_ptr square(boost::shared_ptr theCenter, - boost::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 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); + + /// 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