1 // Created on: 1997-02-24
2 // Created by: Olga PILLOT
3 // Copyright (c) 1997-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 _LocOpe_Revol_HeaderFile
18 #define _LocOpe_Revol_HeaderFile
19 
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23 
24 #include <TopoDS_Shape.hxx>
25 #include <gp_Ax1.hxx>
26 #include <Standard_Real.hxx>
27 #include <Standard_Boolean.hxx>
28 #include <TopTools_DataMapOfShapeListOfShape.hxx>
29 #include <TopTools_ListOfShape.hxx>
30 #include <TColGeom_SequenceOfCurve.hxx>
31 class Standard_NoSuchObject;
32 class StdFail_NotDone;
33 class TopoDS_Shape;
34 class gp_Ax1;
35 class Geom_Curve;
36 
37 
38 //! Defines a prism (using Prism from BRepSweep)
39 //! with modifications provided for the Prism feature.
40 class LocOpe_Revol
41 {
42 public:
43 
44   DEFINE_STANDARD_ALLOC
45 
46 
47   Standard_EXPORT LocOpe_Revol();
48 
49   Standard_EXPORT LocOpe_Revol(const TopoDS_Shape& Base, const gp_Ax1& Axis, const Standard_Real Angle, const Standard_Real angledec);
50 
51   Standard_EXPORT LocOpe_Revol(const TopoDS_Shape& Base, const gp_Ax1& Axis, const Standard_Real Angle);
52 
53   Standard_EXPORT void Perform (const TopoDS_Shape& Base, const gp_Ax1& Axis, const Standard_Real Angle, const Standard_Real angledec);
54 
55   Standard_EXPORT void Perform (const TopoDS_Shape& Base, const gp_Ax1& Axis, const Standard_Real Angle);
56 
57   Standard_EXPORT const TopoDS_Shape& FirstShape() const;
58 
59   Standard_EXPORT const TopoDS_Shape& LastShape() const;
60 
61   Standard_EXPORT const TopoDS_Shape& Shape() const;
62 
63   Standard_EXPORT const TopTools_ListOfShape& Shapes (const TopoDS_Shape& S) const;
64 
65   Standard_EXPORT void Curves (TColGeom_SequenceOfCurve& SCurves) const;
66 
67   Standard_EXPORT Handle(Geom_Curve) BarycCurve() const;
68 
69 
70 
71 
72 protected:
73 
74 
75 
76 
77 
78 private:
79 
80 
81   Standard_EXPORT void IntPerf();
82 
83 
84   TopoDS_Shape myBase;
85   gp_Ax1 myAxis;
86   Standard_Real myAngle;
87   Standard_Real myAngTra;
88   Standard_Boolean myIsTrans;
89   Standard_Boolean myDone;
90   TopoDS_Shape myRes;
91   TopoDS_Shape myFirstShape;
92   TopoDS_Shape myLastShape;
93   TopTools_DataMapOfShapeListOfShape myMap;
94 
95 
96 };
97 
98 
99 
100 
101 
102 
103 
104 #endif // _LocOpe_Revol_HeaderFile
105