MCPcopy Create free account
hub / github.com/Kitware/VTK / DeepCopy

Method DeepCopy

Common/DataModel/vtkUniformHyperTreeGrid.cxx:415–425  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

413
414//------------------------------------------------------------------------------
415void vtkUniformHyperTreeGrid::DeepCopy(vtkDataObject* src)
416{
417 vtkHyperTreeGrid* uhtg = vtkUniformHyperTreeGrid::SafeDownCast(src);
418 assert("src_same_type" && uhtg);
419
420 // Copy member variables
421 this->CopyStructure(uhtg);
422
423 // Call superclass
424 this->Superclass::DeepCopy(src);
425}
426
427//------------------------------------------------------------------------------
428unsigned long vtkUniformHyperTreeGrid::GetActualMemorySizeBytes()

Callers

nothing calls this directly

Calls 2

CopyStructureMethod · 0.95
assertFunction · 0.50

Tested by

no test coverage detected