#include <hdf5writer.h>
Public Member Functions | |
TriaInformation (int vert, int cells, int typeId=UNSTRUCTURED_GRID) | |
TriaInformation () | |
void | setActiveVertices (std::vector< hsize_t > &p) |
std::vector< hsize_t > & | getActiveVertices () |
bool | isCollapsed () |
Public Attributes | |
unsigned | n_vertices |
unsigned | n_cells |
unsigned | type |
std::vector< hsize_t > * | vI |
The information stored in a vector when we register a triangulation
Definition at line 50 of file hdf5writer.h.
HDF5Writer::TriaInformation::TriaInformation | ( | int | vert, | |
int | cells, | |||
int | typeId = UNSTRUCTURED_GRID | |||
) | [inline] |
Definition at line 55 of file hdf5writer.h.
00055 :n_vertices(vert),n_cells(cells),type(typeId),vI(NULL){}
HDF5Writer::TriaInformation::TriaInformation | ( | ) | [inline] |
Definition at line 56 of file hdf5writer.h.
00056 {vI=NULL;}
std::vector<hsize_t>& HDF5Writer::TriaInformation::getActiveVertices | ( | ) | [inline] |
Definition at line 62 of file hdf5writer.h.
bool HDF5Writer::TriaInformation::isCollapsed | ( | ) | [inline] |
Definition at line 67 of file hdf5writer.h.
00068 { 00069 return vI != NULL; 00070 }
void HDF5Writer::TriaInformation::setActiveVertices | ( | std::vector< hsize_t > & | p | ) | [inline] |
Definition at line 57 of file hdf5writer.h.
unsigned HDF5Writer::TriaInformation::n_cells |
Definition at line 52 of file hdf5writer.h.
Definition at line 52 of file hdf5writer.h.
unsigned HDF5Writer::TriaInformation::type |
Definition at line 52 of file hdf5writer.h.
std::vector<hsize_t>* HDF5Writer::TriaInformation::vI |
Definition at line 53 of file hdf5writer.h.