------------------------------------------------------------------------------
| 1162 | |
| 1163 | //------------------------------------------------------------------------------ |
| 1164 | vtkCellIterator* vtkUnstructuredGrid::NewCellIterator() |
| 1165 | { |
| 1166 | vtkUnstructuredGridCellIterator* iter(vtkUnstructuredGridCellIterator::New()); |
| 1167 | iter->SetUnstructuredGrid(this); |
| 1168 | return iter; |
| 1169 | } |
| 1170 | |
| 1171 | //------------------------------------------------------------------------------ |
| 1172 | void vtkUnstructuredGrid::Reset() |
no test coverage detected