#include <mitkMeshUtil.h>
Static Public Member Functions | |
| static vtkFloatingPointType | GetPointScalar (typename MeshType::PointDataContainer *pointData, typename MeshType::PointIdentifier idx, MeshType *=NULL, unsigned int=0) |
| static vtkFloatingPointType | GetCellScalar (typename MeshType::CellDataContainer *cellData, typename MeshType::CellIdentifier idx, MeshType *=NULL, unsigned int=0) |
Definition at line 70 of file mitkMeshUtil.h.
| static vtkFloatingPointType MeshScalarAccessor< MeshType >::GetCellScalar | ( | typename MeshType::CellDataContainer * | cellData, |
| typename MeshType::CellIdentifier | idx, | ||
| MeshType * | = NULL, |
||
| unsigned | int = 0 |
||
| ) | [inline, static] |
Definition at line 78 of file mitkMeshUtil.h.
{
return (vtkFloatingPointType)cellData->GetElement(idx);
};
| static vtkFloatingPointType MeshScalarAccessor< MeshType >::GetPointScalar | ( | typename MeshType::PointDataContainer * | pointData, |
| typename MeshType::PointIdentifier | idx, | ||
| MeshType * | = NULL, |
||
| unsigned | int = 0 |
||
| ) | [inline, static] |
Definition at line 73 of file mitkMeshUtil.h.
{
return (vtkFloatingPointType)pointData->GetElement(idx);
};
1.7.2