------------------------------------------------------------------------------ Turn on a particular data point.
| 289 | //------------------------------------------------------------------------------ |
| 290 | // Turn on a particular data point. |
| 291 | void vtkStructuredGrid::UnBlankPoint(vtkIdType ptId) |
| 292 | { |
| 293 | vtkUnsignedCharArray* ghosts = this->GetPointGhostArray(); |
| 294 | if (ghosts) |
| 295 | { |
| 296 | ghosts->SetValue(ptId, ghosts->GetValue(ptId) & ~vtkDataSetAttributes::HIDDENPOINT); |
| 297 | } |
| 298 | assert(this->IsPointVisible(ptId)); |
| 299 | } |
| 300 | |
| 301 | //------------------------------------------------------------------------------ |
| 302 | // Turn off a particular data cell. |
nothing calls this directly
no test coverage detected