|
| | Array3D () |
| |
| | Array3D (int n1, int n2, int n3) |
| | Construct a 3D array of size n1 x n2 x n3.
|
| |
| void | SetSize (int n1, int n2, int n3) |
| | Set the 3D array size to n1 x n2 x n3.
|
| |
| int | GetSize1 () const |
| | Get the 3D array size in the first dimension.
|
| |
| int | GetSize2 () const |
| | Get the 3D array size in the second dimension.
|
| |
| int | GetSize3 () const |
| | Get the 3D array size in the third dimension.
|
| |
| const T & | operator() (int i, int j, int k) const |
| |
| T & | operator() (int i, int j, int k) |
| |
| void | operator= (const T &a) |
| | Set all entries of the array to the provided constant.
|
| |
template<class T>
class mfem::Array3D< T >
Definition at line 539 of file array.hpp.