0027961: Visualization - remove unused and no more working OpenGl_AVIWriter
[occt.git] / src / IGESSolid / IGESSolid_SolidOfLinearExtrusion.hxx
1 // Created on: 1993-01-09
2 // Created by: CKY / Contract Toubro-Larsen ( SIVA )
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 _IGESSolid_SolidOfLinearExtrusion_HeaderFile
18 #define _IGESSolid_SolidOfLinearExtrusion_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_Type.hxx>
22
23 #include <Standard_Real.hxx>
24 #include <gp_XYZ.hxx>
25 #include <IGESData_IGESEntity.hxx>
26 class IGESData_IGESEntity;
27 class gp_XYZ;
28 class gp_Dir;
29
30
31 class IGESSolid_SolidOfLinearExtrusion;
32 DEFINE_STANDARD_HANDLE(IGESSolid_SolidOfLinearExtrusion, IGESData_IGESEntity)
33
34 //! defines SolidOfLinearExtrusion, Type <164> Form Number <0>
35 //! in package IGESSolid
36 //! Solid of linear extrusion is defined by translatin an
37 //! area determined by a planar curve
38 class IGESSolid_SolidOfLinearExtrusion : public IGESData_IGESEntity
39 {
40
41 public:
42
43   
44   Standard_EXPORT IGESSolid_SolidOfLinearExtrusion();
45   
46   //! This method is used to set the fields of the class
47   //! SolidOfLinearExtrusion
48   //! - aCurve     : the planar curve that is to be translated
49   //! - aLength    : the length of extrusion
50   //! - aDirection : the vector specifying the direction of extrusion
51   //! default (0,0,1)
52   Standard_EXPORT void Init (const Handle(IGESData_IGESEntity)& aCurve, const Standard_Real aLength, const gp_XYZ& aDirection);
53   
54   //! returns the planar curve that is to be translated
55   Standard_EXPORT Handle(IGESData_IGESEntity) Curve() const;
56   
57   //! returns the Extrusion Length
58   Standard_EXPORT Standard_Real ExtrusionLength() const;
59   
60   //! returns the Extrusion direction
61   Standard_EXPORT gp_Dir ExtrusionDirection() const;
62   
63   //! returns ExtrusionDirection after applying TransformationMatrix
64   Standard_EXPORT gp_Dir TransformedExtrusionDirection() const;
65
66
67
68
69   DEFINE_STANDARD_RTTIEXT(IGESSolid_SolidOfLinearExtrusion,IGESData_IGESEntity)
70
71 protected:
72
73
74
75
76 private:
77
78
79   Handle(IGESData_IGESEntity) theCurve;
80   Standard_Real theLength;
81   gp_XYZ theDirection;
82
83
84 };
85
86
87
88
89
90
91
92 #endif // _IGESSolid_SolidOfLinearExtrusion_HeaderFile