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

Method GetRegionsAtLevel

Common/DataModel/vtkKdTree.cxx:549–557  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

547
548//------------------------------------------------------------------------------
549void vtkKdTree::GetRegionsAtLevel(int level, vtkKdNode** nodes)
550{
551 if ((level < 0) || (level > this->Level))
552 {
553 return;
554 }
555
556 vtkKdTree::GetRegionsAtLevel_(level, nodes, this->Top);
557}
558
559//------------------------------------------------------------------------------
560void vtkKdTree::GetLeafNodeIds(vtkKdNode* node, vtkIntArray* ids)

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected