------------------------------------------------------------------------------
| 116 | |
| 117 | //------------------------------------------------------------------------------ |
| 118 | int vtkCartesianGrid::GetCellType(vtkIdType cellId) |
| 119 | { |
| 120 | // see whether the cell is blanked |
| 121 | return this->IsCellVisible(cellId) ? static_cast<int>(this->StructuredCellTypes->GetValue(cellId)) |
| 122 | : VTK_EMPTY_CELL; |
| 123 | } |
| 124 | |
| 125 | //------------------------------------------------------------------------------ |
| 126 | vtkIdType vtkCartesianGrid::GetCellSize(vtkIdType cellId) |
nothing calls this directly
no test coverage detected