Salome HOME
Architecture changes
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_MakeSweep.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        GeomAlgoAPI_MakeSweep.h
4 // Created:     23 November 2015
5 // Author:      Dmitry Bobylev
6 #ifndef GeomAlgoAPI_MakeSweep_H_
7 #define GeomAlgoAPI_MakeSweep_H_
8
9 #include <GeomAlgoAPI.h>
10
11 #include <GeomAlgoAPI_MakeShapeList.h>
12
13 /**\class GeomAlgoAPI_MakeSweep
14  * \ingroup DataAlgo
15  * \brief The abstract class MakeSweep is the root class of swept primitives.
16  * Sweeps are objects you obtain by sweeping a profile along a path.
17  * The profile can be any topology and the path is usually a curve or
18  * a wire. The profile generates objects according to the following rules:
19  * - Vertices generate Edges.
20  * - Edges generate Faces.
21  * - Wires generate Shells.
22  * - Faces generate Solids.
23  * - Shells generate Composite Solids.
24  * You are not allowed to sweep Solids and Composite Solids.
25  */
26 class GeomAlgoAPI_MakeSweep : public GeomAlgoAPI_MakeShapeList
27 {
28 public:
29   /// \returns the list of from faces.
30   GEOMALGOAPI_EXPORT const ListOfShape& fromFaces() const;
31
32   /// \return the list of to faces.
33   GEOMALGOAPI_EXPORT const ListOfShape& toFaces() const;
34
35 protected:
36   GeomAlgoAPI_MakeSweep(){};
37
38 private:
39   ListOfShape myFromFaces;
40   ListOfShape myToFaces;
41 };
42
43 #endif