0027961: Visualization - remove unused and no more working OpenGl_AVIWriter
[occt.git] / src / IntPolyh / IntPolyh_Couple.hxx
1 // Created on: 1999-04-08
2 // Created by: Fabrice SERVANT
3 // Copyright (c) 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 _IntPolyh_Couple_HeaderFile
18 #define _IntPolyh_Couple_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23
24 #include <Standard_Integer.hxx>
25 #include <Standard_Real.hxx>
26
27
28 //! couple of triangles
29 class IntPolyh_Couple 
30 {
31 public:
32
33   DEFINE_STANDARD_ALLOC
34
35   
36   Standard_EXPORT IntPolyh_Couple();
37   
38   Standard_EXPORT IntPolyh_Couple(const Standard_Integer i1, const Standard_Integer i2);
39   
40   Standard_EXPORT Standard_Integer FirstValue() const;
41   
42   Standard_EXPORT Standard_Integer SecondValue() const;
43   
44   Standard_EXPORT Standard_Integer AnalyseFlagValue() const;
45   
46   Standard_EXPORT Standard_Real AngleValue() const;
47   
48   Standard_EXPORT void SetCoupleValue (const Standard_Integer v, const Standard_Integer w);
49   
50   Standard_EXPORT void SetAnalyseFlag (const Standard_Integer v);
51   
52   Standard_EXPORT void SetAngleValue (const Standard_Real ang);
53   
54   Standard_EXPORT void Dump (const Standard_Integer v) const;
55
56
57
58
59 protected:
60
61
62
63
64
65 private:
66
67
68
69   Standard_Integer t1;
70   Standard_Integer t2;
71   Standard_Integer ia;
72   Standard_Real angle;
73
74
75 };
76
77
78
79
80
81
82
83 #endif // _IntPolyh_Couple_HeaderFile