Structure representing a node in the kd tree. More...
#include <KDTree.h>
Public Member Functions | |
| Node (const item &pt) | |
| Constructor Function. | |
| virtual | ~Node () |
| Destructor Function. | |
Public Attributes | |
| item | m_Point |
| Array to store the coordinates. | |
| Node * | m_Left |
| Pointer to left child. | |
| Node * | m_Right |
| Pointer to right child. | |
Structure representing a node in the kd tree.