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