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

Method CopyAttributes

Common/DataModel/vtkDataSet.cxx:82–87  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

80
81//------------------------------------------------------------------------------
82void 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//------------------------------------------------------------------------------
90vtkCellIterator* vtkDataSet::NewCellIterator()

Callers 5

CopyAttributeDataMethod · 0.80
RequestDataMethod · 0.80
RequestDataMethod · 0.80
ProcessDataSetMethod · 0.80
RequestDataMethod · 0.80

Calls 4

PassDataMethod · 0.45
GetPointDataMethod · 0.45
GetCellDataMethod · 0.45
GetFieldDataMethod · 0.45

Tested by

no test coverage detected