$extrastylesheet
Public Member Functions | |
| Array2D (unsigned nx, unsigned ny) | |
| std::vector< T > & | operator[] (unsigned i) |
| const std::vector< T > & | operator[] (unsigned i) const |
Private Attributes | |
| std::vector< std::vector< T > > | _data |
2D array type for interfacing with C APIs.
Definition at line 223 of file mesh_smoother_vsmoother.h.
| libMesh::VariationalMeshSmoother::Array2D< T >::Array2D | ( | unsigned | nx, |
| unsigned | ny | ||
| ) | [inline] |
Definition at line 225 of file mesh_smoother_vsmoother.h.
:
_data(nx, std::vector<T>(ny)) {}
| std::vector<T>& libMesh::VariationalMeshSmoother::Array2D< T >::operator[] | ( | unsigned | i | ) | [inline] |
Definition at line 229 of file mesh_smoother_vsmoother.h.
References libMesh::VariationalMeshSmoother::Array2D< T >::_data.
{return _data[i];}
| const std::vector<T>& libMesh::VariationalMeshSmoother::Array2D< T >::operator[] | ( | unsigned | i | ) | const [inline] |
Definition at line 230 of file mesh_smoother_vsmoother.h.
References libMesh::VariationalMeshSmoother::Array2D< T >::_data.
{return _data[i];}
std::vector<std::vector<T> > libMesh::VariationalMeshSmoother::Array2D< T >::_data [private] |
Definition at line 233 of file mesh_smoother_vsmoother.h.
Referenced by libMesh::VariationalMeshSmoother::Array2D< T >::operator[]().