------------------------------------------------------------------------------
| 1058 | |
| 1059 | //------------------------------------------------------------------------------ |
| 1060 | void vtkHyperTreeGrid::ShallowCopy(vtkDataObject* src) |
| 1061 | { |
| 1062 | vtkHyperTreeGrid* htg = vtkHyperTreeGrid::SafeDownCast(src); |
| 1063 | assert("src_same_type" && htg); |
| 1064 | |
| 1065 | // Copy member variables |
| 1066 | this->CopyStructure(htg); |
| 1067 | |
| 1068 | this->CellData->ShallowCopy(htg->GetCellData()); |
| 1069 | |
| 1070 | // Call superclass |
| 1071 | this->Superclass::ShallowCopy(src); |
| 1072 | } |
| 1073 | |
| 1074 | //------------------------------------------------------------------------------ |
| 1075 | void vtkHyperTreeGrid::DeepCopy(vtkDataObject* src) |
nothing calls this directly
no test coverage detected