------------------------------------------------------------------------------
| 194 | |
| 195 | //------------------------------------------------------------------------------ |
| 196 | vtkIdType* vtkExplicitStructuredGrid::GetCellPoints(vtkIdType cellId) |
| 197 | { |
| 198 | vtkIdType unused; |
| 199 | const vtkIdType* result; |
| 200 | this->Cells->GetCellAtId(cellId, unused, result); |
| 201 | return const_cast<vtkIdType*>(result); |
| 202 | } |
| 203 | |
| 204 | //------------------------------------------------------------------------------ |
| 205 | // Get the points defining a cell. (See vtkDataSet for more info.) |
no test coverage detected