0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / math / math_DoubleTab.hxx
1 // Created on: 1992-02-07
2 // Created by: Laurent PAINNOT
3 // Copyright (c) 1992-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 _math_DoubleTab_HeaderFile
18 #define _math_DoubleTab_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23
24 #include <Standard_Address.hxx>
25 #include <Standard_Real.hxx>
26 #include <Standard_Boolean.hxx>
27 #include <Standard_Integer.hxx>
28
29
30
31 class math_DoubleTab 
32 {
33 public:
34
35   DEFINE_STANDARD_ALLOC
36
37   
38   Standard_EXPORT math_DoubleTab(const Standard_Integer LowerRow, const Standard_Integer UpperRow, const Standard_Integer LowerCol, const Standard_Integer UpperCol);
39   
40   Standard_EXPORT math_DoubleTab(const Standard_Address Tab, const Standard_Integer LowerRow, const Standard_Integer UpperRow, const Standard_Integer LowerCol, const Standard_Integer UpperCol);
41   
42   Standard_EXPORT void Init (const Standard_Real InitValue);
43   
44   Standard_EXPORT math_DoubleTab(const math_DoubleTab& Other);
45   
46     void Copy (math_DoubleTab& Other) const;
47   
48   Standard_EXPORT void SetLowerRow (const Standard_Integer LowerRow);
49   
50   Standard_EXPORT void SetLowerCol (const Standard_Integer LowerCol);
51   
52     Standard_Real& Value (const Standard_Integer RowIndex, const Standard_Integer ColIndex) const;
53   Standard_Real& operator() (const Standard_Integer RowIndex, const Standard_Integer ColIndex) const
54 {
55   return Value(RowIndex,ColIndex);
56 }
57   
58   Standard_EXPORT void Free();
59 ~math_DoubleTab()
60 {
61   Free();
62 }
63
64
65
66
67 protected:
68
69
70
71
72
73 private:
74
75   
76   Standard_EXPORT void Allocate();
77
78
79   Standard_Address Addr;
80   Standard_Real Buf[16];
81   Standard_Boolean isAllocated;
82   Standard_Integer LowR;
83   Standard_Integer UppR;
84   Standard_Integer LowC;
85   Standard_Integer UppC;
86
87
88 };
89
90
91 #include <math_DoubleTab.lxx>
92
93
94
95
96
97 #endif // _math_DoubleTab_HeaderFile