------------------------------------------------------------------------------
| 124 | |
| 125 | //------------------------------------------------------------------------------ |
| 126 | vtkIdType vtkCartesianGrid::GetCellSize(vtkIdType cellId) |
| 127 | { |
| 128 | // see whether the cell is blanked |
| 129 | return this->IsCellVisible(cellId) ? this->StructuredCells->GetCellSize(cellId) : 0; |
| 130 | } |
| 131 | |
| 132 | //------------------------------------------------------------------------------ |
| 133 | void vtkCartesianGrid::GetCellPoints(vtkIdType cellId, vtkIdType& npts, vtkIdType const*& pts, |
nothing calls this directly
no test coverage detected