------------------------------------------------------------------------------
| 97 | |
| 98 | //------------------------------------------------------------------------------ |
| 99 | vtkIdType vtkExplicitStructuredGrid::GetCellSize(vtkIdType cellId) |
| 100 | { |
| 101 | return this->IsCellVisible(cellId) ? 8 : 0; |
| 102 | } |
| 103 | |
| 104 | //------------------------------------------------------------------------------ |
| 105 | vtkIdType vtkExplicitStructuredGrid::GetNumberOfCells() |
nothing calls this directly
no test coverage detected