0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / BRepSweep / BRepSweep_Builder.hxx
1 // Created on: 1993-01-14
2 // Created by: Philippe DAUTRY
3 // Copyright (c) 1993-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 _BRepSweep_Builder_HeaderFile
18 #define _BRepSweep_Builder_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23
24 #include <BRep_Builder.hxx>
25 #include <TopAbs_Orientation.hxx>
26 class BRep_Builder;
27 class TopoDS_Shape;
28
29
30 //! implements the abstract Builder with the BRep Builder
31 class BRepSweep_Builder 
32 {
33 public:
34
35   DEFINE_STANDARD_ALLOC
36
37   
38   //! Creates a Builder.
39   Standard_EXPORT BRepSweep_Builder(const BRep_Builder& aBuilder);
40   
41     const BRep_Builder& Builder() const;
42   
43   //! Returns an empty Compound.
44   Standard_EXPORT void MakeCompound (TopoDS_Shape& aCompound) const;
45   
46   //! Returns an empty CompSolid.
47   Standard_EXPORT void MakeCompSolid (TopoDS_Shape& aCompSolid) const;
48   
49   //! Returns an empty Solid.
50   Standard_EXPORT void MakeSolid (TopoDS_Shape& aSolid) const;
51   
52   //! Returns an empty Shell.
53   Standard_EXPORT void MakeShell (TopoDS_Shape& aShell) const;
54   
55   //! Returns an empty Wire.
56   Standard_EXPORT void MakeWire (TopoDS_Shape& aWire) const;
57   
58   //! Adds the Shape 1 in the Shape 2, set to
59   //! <Orient> orientation.
60   Standard_EXPORT void Add (TopoDS_Shape& aShape1, const TopoDS_Shape& aShape2, const TopAbs_Orientation Orient) const;
61   
62   //! Adds the Shape 1 in the Shape 2.
63   Standard_EXPORT void Add (TopoDS_Shape& aShape1, const TopoDS_Shape& aShape2) const;
64
65
66
67
68 protected:
69
70
71
72
73
74 private:
75
76
77
78   BRep_Builder myBuilder;
79
80
81 };
82
83
84 #include <BRepSweep_Builder.lxx>
85
86
87
88
89
90 #endif // _BRepSweep_Builder_HeaderFile