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

Method GetElderChildIndexArray

Common/DataModel/vtkHyperTree.cxx:396–400  ·  view source on GitHub ↗

--------------------------------------------------------------------------- Description: Access to the internals of the tree. Should be used for consulting, not modification.

Source from the content-addressed store, hash-verified

394// Access to the internals of the tree. Should be used for consulting,
395// not modification.
396const unsigned int* vtkHyperTree::GetElderChildIndexArray(size_t& nbElements) const
397{
398 nbElements = this->Datas->ParentToElderChild.size();
399 return this->Datas->ParentToElderChild.data();
400}
401
402//---------------------------------------------------------------------------
403void vtkHyperTree::SubdivideLeaf(vtkIdType index, unsigned int depth)

Callers 3

ToChildMethod · 0.80
ToChildMethod · 0.80
TestElderChildIndexOKFunction · 0.80

Calls 2

sizeMethod · 0.45
dataMethod · 0.45

Tested by 1

TestElderChildIndexOKFunction · 0.64