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