File indexing completed on 2026-09-09 09:15:06
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _BRepSweep_Builder_HeaderFile
0018 #define _BRepSweep_Builder_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_DefineAlloc.hxx>
0022 #include <Standard_Handle.hxx>
0023
0024 #include <BRep_Builder.hxx>
0025 #include <TopAbs_Orientation.hxx>
0026 class TopoDS_Shape;
0027
0028
0029 class BRepSweep_Builder
0030 {
0031 public:
0032 DEFINE_STANDARD_ALLOC
0033
0034
0035 Standard_EXPORT BRepSweep_Builder(const BRep_Builder& aBuilder);
0036
0037 const BRep_Builder& Builder() const;
0038
0039
0040 Standard_EXPORT void MakeCompound(TopoDS_Shape& aCompound) const;
0041
0042
0043 Standard_EXPORT void MakeCompSolid(TopoDS_Shape& aCompSolid) const;
0044
0045
0046 Standard_EXPORT void MakeSolid(TopoDS_Shape& aSolid) const;
0047
0048
0049 Standard_EXPORT void MakeShell(TopoDS_Shape& aShell) const;
0050
0051
0052 Standard_EXPORT void MakeWire(TopoDS_Shape& aWire) const;
0053
0054
0055
0056 Standard_EXPORT void Add(TopoDS_Shape& aShape1,
0057 const TopoDS_Shape& aShape2,
0058 const TopAbs_Orientation Orient) const;
0059
0060
0061 Standard_EXPORT void Add(TopoDS_Shape& aShape1, const TopoDS_Shape& aShape2) const;
0062
0063 protected:
0064 private:
0065 BRep_Builder myBuilder;
0066 };
0067
0068 #include <BRepSweep_Builder.lxx>
0069
0070 #endif