Caller must ValidateCellType first.
| 237 | |
| 238 | // Caller must ValidateCellType first. |
| 239 | void InsertCell(vtkIdType globalCellId, vtkIdType cellId, VTKCellType cellType) |
| 240 | { |
| 241 | this->Map[globalCellId] = TaggedCellId(cellId, cellType); |
| 242 | } |
| 243 | |
| 244 | // Caller must ValidateCellType and ValidateCellId first. |
| 245 | // useful for reusing the target lookup from cellType and then calling |
nothing calls this directly
no test coverage detected