0027961: Visualization - remove unused and no more working OpenGl_AVIWriter
[occt.git] / src / GeomFill / GeomFill_DraftTrihedron.hxx
1 // Created on: 1998-04-14
2 // Created by: Stephanie HUMEAU
3 // Copyright (c) 1998-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 _GeomFill_DraftTrihedron_HeaderFile
18 #define _GeomFill_DraftTrihedron_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_Type.hxx>
22
23 #include <gp_Vec.hxx>
24 #include <Standard_Real.hxx>
25 #include <GeomFill_TrihedronLaw.hxx>
26 #include <Standard_Boolean.hxx>
27 #include <Standard_Integer.hxx>
28 #include <GeomAbs_Shape.hxx>
29 #include <TColStd_Array1OfReal.hxx>
30 class Standard_OutOfRange;
31 class Standard_ConstructionError;
32 class gp_Vec;
33 class GeomFill_TrihedronLaw;
34
35
36 class GeomFill_DraftTrihedron;
37 DEFINE_STANDARD_HANDLE(GeomFill_DraftTrihedron, GeomFill_TrihedronLaw)
38
39
40 class GeomFill_DraftTrihedron : public GeomFill_TrihedronLaw
41 {
42
43 public:
44
45   
46   Standard_EXPORT GeomFill_DraftTrihedron(const gp_Vec& BiNormal, const Standard_Real Angle);
47   
48   Standard_EXPORT void SetAngle (const Standard_Real Angle);
49   
50   Standard_EXPORT virtual Handle(GeomFill_TrihedronLaw) Copy() const Standard_OVERRIDE;
51   
52   //! compute Triedrhon and derivative Trihedron on curve at
53   //! parameter <Param>
54   //! Warning : It used  only for C1 or C2 aproximation
55   Standard_EXPORT virtual Standard_Boolean D0 (const Standard_Real Param, gp_Vec& Tangent, gp_Vec& Normal, gp_Vec& BiNormal) Standard_OVERRIDE;
56   
57   //! compute Trihedron on curve
58   //! first and seconde  derivatives.
59   //! Warning : It used only for C2 aproximation
60   Standard_EXPORT virtual Standard_Boolean D1 (const Standard_Real Param, gp_Vec& Tangent, gp_Vec& DTangent, gp_Vec& Normal, gp_Vec& DNormal, gp_Vec& BiNormal, gp_Vec& DBiNormal) Standard_OVERRIDE;
61   
62   Standard_EXPORT virtual Standard_Boolean D2 (const Standard_Real Param, gp_Vec& Tangent, gp_Vec& DTangent, gp_Vec& D2Tangent, gp_Vec& Normal, gp_Vec& DNormal, gp_Vec& D2Normal, gp_Vec& BiNormal, gp_Vec& DBiNormal, gp_Vec& D2BiNormal) Standard_OVERRIDE;
63   
64   //! Returns  the number  of  intervals for  continuity
65   //! <S>.
66   //! May be one if Continuity(me) >= <S>
67   Standard_EXPORT virtual Standard_Integer NbIntervals (const GeomAbs_Shape S) const Standard_OVERRIDE;
68   
69   //! Stores in <T> the  parameters bounding the intervals
70   //! of continuity <S>.
71   //!
72   //! The array must provide  enough room to  accomodate
73   //! for the parameters. i.e. T.Length() > NbIntervals()
74   Standard_EXPORT virtual void Intervals (TColStd_Array1OfReal& T, const GeomAbs_Shape S) const Standard_OVERRIDE;
75   
76   //! Get average value of Tangent(t) and Normal(t) it is usefull to
77   //! make fast approximation of rational  surfaces.
78   Standard_EXPORT virtual void GetAverageLaw (gp_Vec& ATangent, gp_Vec& ANormal, gp_Vec& ABiNormal) Standard_OVERRIDE;
79   
80   //! Say if the law is Constant.
81   Standard_EXPORT virtual Standard_Boolean IsConstant() const Standard_OVERRIDE;
82   
83   //! Return True.
84   Standard_EXPORT virtual Standard_Boolean IsOnlyBy3dCurve() const Standard_OVERRIDE;
85
86
87
88
89   DEFINE_STANDARD_RTTIEXT(GeomFill_DraftTrihedron,GeomFill_TrihedronLaw)
90
91 protected:
92
93
94
95
96 private:
97
98
99   gp_Vec B;
100   Standard_Real myAngle;
101   Standard_Real myCos;
102
103
104 };
105
106
107
108
109
110
111
112 #endif // _GeomFill_DraftTrihedron_HeaderFile