------------------------------------------------------------------------------
| 147 | |
| 148 | //------------------------------------------------------------------------------ |
| 149 | vtkIdType vtkStructuredGrid::GetCellSize(vtkIdType cellId) |
| 150 | { |
| 151 | // see whether the cell is blanked |
| 152 | return this->IsCellVisible(cellId) ? this->StructuredCells->GetCellSize(cellId) : 0; |
| 153 | } |
| 154 | |
| 155 | //------------------------------------------------------------------------------ |
| 156 | void vtkStructuredGrid::GetCellPoints(vtkIdType cellId, vtkIdType& npts, vtkIdType const*& pts, |
nothing calls this directly
no test coverage detected