------------------------------------------------------------------------------
| 91 | |
| 92 | //------------------------------------------------------------------------------ |
| 93 | int vtkExplicitStructuredGrid::GetCellType(vtkIdType cellId) |
| 94 | { |
| 95 | return this->IsCellVisible(cellId) ? VTK_HEXAHEDRON : VTK_EMPTY_CELL; |
| 96 | } |
| 97 | |
| 98 | //------------------------------------------------------------------------------ |
| 99 | vtkIdType vtkExplicitStructuredGrid::GetCellSize(vtkIdType cellId) |
nothing calls this directly
no test coverage detected