|
inlineprivate |
Recursive function to print the kd_tree.
| [in] | node | recursive node. |
| [in] | depth | recursive depth. |
Base case: If node is null, return.
Print current node with indentation based on depth.
Recursively print left and right children.
Definition at line 529 of file KDTree.h.
References scl::kd_tree< K >::print_recursive().
Referenced by scl::kd_tree< K >::print(), and scl::kd_tree< K >::print_recursive().