d1be543dad77c6a20f1cae44613c6d20bb54849f
[occt.git] / src / BRepLib / BRepLib_MakeSolid.hxx
1 // Created on: 1995-01-04
2 // Created by: Bruno DUMORTIER
3 // Copyright (c) 1995-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #ifndef _BRepLib_MakeSolid_HeaderFile
18 #define _BRepLib_MakeSolid_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23
24 #include <TopTools_ListOfShape.hxx>
25 #include <BRepLib_MakeShape.hxx>
26 #include <BRepLib_ShapeModification.hxx>
27 class StdFail_NotDone;
28 class TopoDS_CompSolid;
29 class TopoDS_Shell;
30 class TopoDS_Solid;
31 class TopoDS_Face;
32
33
34 //! Makes a solid from compsolid  or  shells.
35 class BRepLib_MakeSolid  : public BRepLib_MakeShape
36 {
37 public:
38
39   DEFINE_STANDARD_ALLOC
40
41   
42   //! Solid covers whole space.
43   Standard_EXPORT BRepLib_MakeSolid();
44   
45   //! Make a solid from a CompSolid.
46   Standard_EXPORT BRepLib_MakeSolid(const TopoDS_CompSolid& S);
47   
48   //! Make a solid from a shell.
49   Standard_EXPORT BRepLib_MakeSolid(const TopoDS_Shell& S);
50   
51   //! Make a solid from two shells.
52   Standard_EXPORT BRepLib_MakeSolid(const TopoDS_Shell& S1, const TopoDS_Shell& S2);
53   
54   //! Make a solid from three shells.
55   Standard_EXPORT BRepLib_MakeSolid(const TopoDS_Shell& S1, const TopoDS_Shell& S2, const TopoDS_Shell& S3);
56   
57   //! Make a solid from a solid. Usefull for adding later.
58   Standard_EXPORT BRepLib_MakeSolid(const TopoDS_Solid& So);
59   
60   //! Add a shell to a solid.
61   Standard_EXPORT BRepLib_MakeSolid(const TopoDS_Solid& So, const TopoDS_Shell& S);
62   
63   //! Add the shell to the current solid.
64   Standard_EXPORT void Add (const TopoDS_Shell& S);
65   
66   //! Returns the new Solid.
67   Standard_EXPORT const TopoDS_Solid& Solid() const;
68 Standard_EXPORT operator TopoDS_Solid() const;
69   
70   //! returns the status of the Face after
71   //! the shape creation.
72   Standard_EXPORT virtual BRepLib_ShapeModification FaceStatus (const TopoDS_Face& F) const Standard_OVERRIDE;
73
74
75
76
77 protected:
78
79
80
81   TopTools_ListOfShape myDeletedFaces;
82
83
84 private:
85
86
87
88
89
90 };
91
92
93
94
95
96
97
98 #endif // _BRepLib_MakeSolid_HeaderFile