------------------------------------------------------------------------------
| 139 | |
| 140 | //------------------------------------------------------------------------------ |
| 141 | int vtkStructuredGrid::GetCellType(vtkIdType cellId) |
| 142 | { |
| 143 | // see whether the cell is blanked |
| 144 | return this->IsCellVisible(cellId) ? static_cast<int>(this->StructuredCellTypes->GetValue(cellId)) |
| 145 | : VTK_EMPTY_CELL; |
| 146 | } |
| 147 | |
| 148 | //------------------------------------------------------------------------------ |
| 149 | vtkIdType vtkStructuredGrid::GetCellSize(vtkIdType cellId) |
nothing calls this directly
no test coverage detected