------------------------------------------------------------------------------
| 92 | |
| 93 | //------------------------------------------------------------------------------ |
| 94 | vtkCell* vtkStructuredGrid::GetCell(vtkIdType cellId) |
| 95 | { |
| 96 | this->GetCell(cellId, this->GenericCell); |
| 97 | return this->GenericCell->GetRepresentativeCell(); |
| 98 | } |
| 99 | |
| 100 | //------------------------------------------------------------------------------ |
| 101 | vtkCell* vtkStructuredGrid::GetCell(int i, int j, int k) |
nothing calls this directly
no test coverage detected