From d9769850d8c152dc97c87e75fa8f0d4106af6f09 Mon Sep 17 00:00:00 2001 From: fulara Date: Mon, 2 Jan 2017 19:26:16 +0100 Subject: [PATCH] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index ecf7756..e8f08c2 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,9 @@ for i in 0 .. point_count { assert_eq!(p.id, tree.nearest_search(p).id ); } ``` +Although not recommended for the kd-tree you can use the `insert_node` and `insert_nodes_and_rebuild` functions to add nodes to the tree. `insert_node` does silly check to check whether the tree should be rebuilt. `insert_nodes_and_rebuild` Automatically rebuilds the tree. +for now the removal of the nodes is not supported. ##Benchmark `cargo bench` using travis :)