| 197 | vtkTypeMacro(CellMap, vtkObject); |
| 198 | |
| 199 | static bool ValidateCellType(VTKCellType cellType) noexcept |
| 200 | { |
| 201 | // 1-9 excluding 8 (VTK_PIXEL): |
| 202 | return cellType > 0 && cellType <= 10 && cellType != VTK_PIXEL; |
| 203 | } |
| 204 | |
| 205 | static bool ValidateCellId(vtkIdType cellId) noexcept |
| 206 | { |