------------------------------------------------------------------------------ Turn off a particular data cell.
| 689 | //------------------------------------------------------------------------------ |
| 690 | // Turn off a particular data cell. |
| 691 | void vtkExplicitStructuredGrid::BlankCell(vtkIdType cellId) |
| 692 | { |
| 693 | vtkUnsignedCharArray* ghosts = this->GetCellGhostArray(); |
| 694 | if (!ghosts) |
| 695 | { |
| 696 | ghosts = this->AllocateCellGhostArray(); |
| 697 | } |
| 698 | ghosts->SetValue(cellId, ghosts->GetValue(cellId) | vtkDataSetAttributes::HIDDENCELL); |
| 699 | assert(!this->IsCellVisible(cellId)); |
| 700 | } |
| 701 | |
| 702 | //------------------------------------------------------------------------------ |
| 703 | // Turn on a particular data cell. |
nothing calls this directly
no test coverage detected