------------------------------------------------------------------------------ Turn on a particular data cell.
| 350 | //------------------------------------------------------------------------------ |
| 351 | // Turn on a particular data cell. |
| 352 | void vtkCartesianGrid::UnBlankCell(vtkIdType cellId) |
| 353 | { |
| 354 | vtkUnsignedCharArray* ghosts = this->GetCellGhostArray(); |
| 355 | if (!ghosts) |
| 356 | { |
| 357 | return; |
| 358 | } |
| 359 | ghosts->SetValue(cellId, ghosts->GetValue(cellId) & ~vtkDataSetAttributes::HIDDENCELL); |
| 360 | assert(this->IsCellVisible(cellId)); |
| 361 | } |
| 362 | |
| 363 | //------------------------------------------------------------------------------ |
| 364 | void vtkCartesianGrid::UnBlankCell(int i, int j, int k) |
no test coverage detected