]> SALOME platform Git repositories - modules/shaper.git/blob - src/GeomAlgoAPI/GeomAlgoAPI_SketchBuilder.h
Salome HOME
High level objects history implementation for BuildPlugin features.
[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 #include <GeomAlgoAPI_MakeShape.h>
26
27 #include <memory>
28 #include <list>
29
30 class GeomAPI_Dir;
31 class GeomAPI_Pln;
32 class GeomAPI_Pnt;
33 class GeomAPI_Shape;
34
35 /** \class GeomAlgoAPI_SketchBuilder
36  *  \ingroup DataAlgo
37  *  \brief Creates planar faces based on the list of Sketch features
38  */
39 class GeomAlgoAPI_SketchBuilder : public GeomAlgoAPI_MakeShape
40 {
41 public:
42   /** \brief Creates list of faces based on the edges of the sketch
43    *  \param[in]  thePlane  plane of the sketch
44    *  \param[in]  theEdges  initial edges of the sketch
45    *
46    *  The algorithm searches all loops of edges surrounding lesser areas.
47    */
48   GEOMALGOAPI_EXPORT
49   GeomAlgoAPI_SketchBuilder(const std::shared_ptr<GeomAPI_Pln>& thePlane,
50                             const std::list<std::shared_ptr<GeomAPI_Shape> >& theEdges);
51
52   /** \brief Creates list of faces and unclosed wires on basis of the features of the sketch
53    *  \param[in]  theOrigin      origin point of the sketch
54    *  \param[in]  theDirX        x-direction of the sketch
55    *  \param[in]  theNorm        normal of the sketch
56    *  \param[in]  theWire        a wire which contains all edges
57    *
58    *  The algorithm searches all loops of edges surrounding lesser areas.
59    */
60   GEOMALGOAPI_EXPORT
61   GeomAlgoAPI_SketchBuilder(const std::shared_ptr<GeomAPI_Pnt>& theOrigin,
62                             const std::shared_ptr<GeomAPI_Dir>& theDirX,
63                             const std::shared_ptr<GeomAPI_Dir>& theNorm,
64                             const std::shared_ptr<GeomAPI_Shape>& theWire);
65
66   /// Return list of created faces
67   GEOMALGOAPI_EXPORT const std::list<std::shared_ptr<GeomAPI_Shape> >& faces() const
68   { return myResultFaces; }
69
70 private:
71   void build(const std::shared_ptr<GeomAPI_Pnt>& theOrigin,
72              const std::shared_ptr<GeomAPI_Dir>& theDirX,
73              const std::shared_ptr<GeomAPI_Dir>& theNorm,
74              const std::list<std::shared_ptr<GeomAPI_Shape> >& theEdges);
75
76 private:
77   std::list<std::shared_ptr<GeomAPI_Shape> > myResultFaces;
78 };
79
80 #endif