shape_doc 0.1
|
#include <kdtree.hpp>
Definition at line 21 of file kdtree.hpp.
kdtree | ( | void | ) | [inline] |
Definition at line 24 of file kdtree.hpp.
{
m_root = new node<OBJECT, CELL> ;
m_root->set_parent(NULL) ;
}
node<OBJECT, CELL>* root | ( | void | ) | [inline] |
Definition at line 29 of file kdtree.hpp.
Referenced by kdtree_cell< Object, CELL >::root().
{
return m_root ;
}
const node<OBJECT, CELL>* root | ( | void | ) | const [inline] |
Definition at line 33 of file kdtree.hpp.
{
return m_root ;
}