------------------------------------------------------------------------------
| 285 | |
| 286 | //------------------------------------------------------------------------------ |
| 287 | void vtkAbstractArray::DeepCopy(vtkAbstractArray* da) |
| 288 | { |
| 289 | if (!da || da == this) |
| 290 | { |
| 291 | return; |
| 292 | } |
| 293 | |
| 294 | if (da->HasInformation()) |
| 295 | { |
| 296 | this->CopyInformation(da->GetInformation(), /*deep=*/1); |
| 297 | } |
| 298 | else |
| 299 | { |
| 300 | this->SetInformation(nullptr); |
| 301 | } |
| 302 | |
| 303 | this->SetName(da->Name); |
| 304 | |
| 305 | this->CopyComponentNames(da); |
| 306 | } |
| 307 | |
| 308 | //------------------------------------------------------------------------------ |
| 309 | void vtkAbstractArray::ExportToVoidPointer(void* dest) |
nothing calls this directly
no test coverage detected