------------------------------------------------------------------------------
| 80 | |
| 81 | //------------------------------------------------------------------------------ |
| 82 | void vtkDataSet::CopyAttributes(vtkDataSet* ds) |
| 83 | { |
| 84 | this->GetPointData()->PassData(ds->GetPointData()); |
| 85 | this->GetCellData()->PassData(ds->GetCellData()); |
| 86 | this->GetFieldData()->PassData(ds->GetFieldData()); |
| 87 | } |
| 88 | |
| 89 | //------------------------------------------------------------------------------ |
| 90 | vtkCellIterator* vtkDataSet::NewCellIterator() |
no test coverage detected