Salome HOME
Add copyright header according to request of CEA from 06.06.2017
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_FaceBuilder.h
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef GeomAlgoAPI_FaceBuilder_H_
22 #define GeomAlgoAPI_FaceBuilder_H_
23
24 #include "GeomAlgoAPI.h"
25
26 #include <memory>
27
28 class GeomAPI_Dir;
29 class GeomAPI_Face;
30 class GeomAPI_Pln;
31 class GeomAPI_Pnt;
32 class GeomAPI_Vertex;
33
34 /// \class GeomAlgoAPI_FaceBuilder
35 /// \ingroup DataAlgo
36 /// \brief Allows to create face-shapes by different parameters
37 class GEOMALGOAPI_EXPORT GeomAlgoAPI_FaceBuilder
38 {
39  public:
40   /// Creates square planar face by given point of the center,
41   /// normal to the plane and size of square
42   static std::shared_ptr<GeomAPI_Face> squareFace(const std::shared_ptr<GeomAPI_Pnt> theCenter,
43                                                   const std::shared_ptr<GeomAPI_Dir> theNormal,
44                                                   const double theSize);
45   /// Creates square planar face by given point of the center,
46   /// normal to the plane and size of square
47   static std::shared_ptr<GeomAPI_Face> squareFace(const std::shared_ptr<GeomAPI_Pln> thePlane,
48                                                   const double theSize);
49
50   /// Creates the planar face by given point of the center and normal to the plane.
51   static std::shared_ptr<GeomAPI_Face> planarFace(const std::shared_ptr<GeomAPI_Pnt> theCenter,
52                                                   const std::shared_ptr<GeomAPI_Dir> theNormal);
53
54   /// Creates a planar face by given plane, left lower point and size.
55   static std::shared_ptr<GeomAPI_Face> planarFace(const std::shared_ptr<GeomAPI_Pln> thePlane,
56                                                   const double theX, const double theY,
57                                                   const double theWidth, const double theHeight);
58
59   /// Creates a planar face by three vertices.
60   static std::shared_ptr<GeomAPI_Face> planarFaceByThreeVertices(
61                         const std::shared_ptr<GeomAPI_Vertex> theVertex1,
62                         const std::shared_ptr<GeomAPI_Vertex> theVertex2,
63                         const std::shared_ptr<GeomAPI_Vertex> theVertex3);
64
65   /// Creates a planar face parallel to theFace and passing through theVertex.
66   static std::shared_ptr<GeomAPI_Face> planarFaceByFaceAndVertex(
67                         const std::shared_ptr<GeomAPI_Face> theFace,
68                         const std::shared_ptr<GeomAPI_Vertex> theVertex);
69 };
70
71 #endif