Salome HOME
Add copyright header according to request of CEA from 06.06.2017
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_SketchBuilder.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_SketchBuilder_H_
22 #define GeomAlgoAPI_SketchBuilder_H_
23
24 #include <GeomAlgoAPI.h>
25
26 #include <memory>
27 #include <list>
28
29 #include <GeomAPI_Dir.h>
30 #include <GeomAPI_Pnt.h>
31 #include <GeomAPI_Shape.h>
32
33 /** \class GeomAlgoAPI_SketchBuilder
34  *  \ingroup DataAlgo
35  *  \brief Creates planar faces based on the list of Sketch features
36  */
37 class GEOMALGOAPI_EXPORT GeomAlgoAPI_SketchBuilder
38 {
39  public:
40   /** \brief Creates list of faces based on the features of the sketch
41    *  \param[in]  theOrigin      origin point of the sketch
42    *  \param[in]  theDirX        x-direction of the sketch
43    *  \param[in]  theNorm        normal of the sketch
44    *  \param[in]  theFeatures    initial features of the sketch
45    *  \param[out] theResultFaces faces based on closed wires
46    *
47    *  The algorithm searches all loops of edges surrounding lesser areas.
48    */
49   static void createFaces(const std::shared_ptr<GeomAPI_Pnt>& theOrigin,
50                           const std::shared_ptr<GeomAPI_Dir>& theDirX,
51                           const std::shared_ptr<GeomAPI_Dir>& theNorm,
52                           const std::list<std::shared_ptr<GeomAPI_Shape> >& theFeatures,
53                           std::list<std::shared_ptr<GeomAPI_Shape> >& theResultFaces);
54
55   /** \brief Creates list of faces and unclosed wires on basis of the features of the sketch
56    *  \param[in]  theOrigin      origin point of the sketch
57    *  \param[in]  theDirX        x-direction of the sketch
58    *  \param[in]  theNorm        normal of the sketch
59    *  \param[in]  theWire        a wire which contains all edges
60    *  \param[out] theResultFaces faces based on closed wires
61    *
62    *  The algorithm searches all loops of edges surrounding lesser areas.
63    */
64   static void createFaces(const std::shared_ptr<GeomAPI_Pnt>& theOrigin,
65                           const std::shared_ptr<GeomAPI_Dir>& theDirX,
66                           const std::shared_ptr<GeomAPI_Dir>& theNorm,
67                           const std::shared_ptr<GeomAPI_Shape>& theWire,
68                           std::list<std::shared_ptr<GeomAPI_Shape> >& theResultFaces);
69 };
70
71 #endif