------------------------------------------------------------------------------ Return non-zero if the specified cell is visible (i.e., not blanked)
| 331 | //------------------------------------------------------------------------------ |
| 332 | // Return non-zero if the specified cell is visible (i.e., not blanked) |
| 333 | unsigned char vtkStructuredGrid::IsCellVisible(vtkIdType cellId) |
| 334 | { |
| 335 | return vtkStructuredData::IsCellVisible(cellId, this->Dimensions, this->DataDescription, |
| 336 | this->GetCellGhostArray(), this->GetPointGhostArray()); |
| 337 | } |
| 338 | |
| 339 | //------------------------------------------------------------------------------ |
| 340 | bool vtkStructuredGrid::HasAnyBlankPoints() |
no test coverage detected