------------------------------------------------------------------------------ Return non-zero if the specified cell is visible (i.e., not blanked)
| 378 | //------------------------------------------------------------------------------ |
| 379 | // Return non-zero if the specified cell is visible (i.e., not blanked) |
| 380 | unsigned char vtkCartesianGrid::IsCellVisible(vtkIdType cellId) |
| 381 | { |
| 382 | return vtkStructuredData::IsCellVisible(cellId, this->GetDimensions(), this->GetDataDescription(), |
| 383 | this->GetCellGhostArray(), this->GetPointGhostArray()); |
| 384 | } |
| 385 | |
| 386 | //------------------------------------------------------------------------------ |
| 387 | int* vtkCartesianGrid::GetDimensions() |