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

Method HasChildMetaData

Common/DataModel/vtkDataObjectTree.cxx:124–133  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

122
123//------------------------------------------------------------------------------
124vtkTypeBool vtkDataObjectTree::HasChildMetaData(unsigned int index)
125{
126 if (index < this->Internals->Children.size())
127 {
128 vtkDataObjectTreeItem& item = this->Internals->Children[index];
129 return (item.MetaData != nullptr) ? 1 : 0;
130 }
131
132 return 0;
133}
134
135//------------------------------------------------------------------------------
136void vtkDataObjectTree::CopyStructure(vtkCompositeDataSet* compositeSource)

Callers 6

PrintSelfMethod · 0.95
HasMetaDataMethod · 0.80
CompositeShallowCopyMethod · 0.80
DeepCopyMethod · 0.80
ShallowCopyMethod · 0.80
RemoveNullPartitionsMethod · 0.80

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected