spart 0.5.1

A collection of space partitioning tree data structures for Rust
Documentation
1
2
3
4
5
6
7
8
9
## Spart Examples

| # | File                           | Description                                                                                             |
|---|--------------------------------|---------------------------------------------------------------------------------------------------------|
| 1 | [kdtree.rs]kdtree.rs         | Shows the usage of a 2D and 3D KdTree for inserting points and performing a kNN search                  |
| 2 | [octree.rs]octree.rs         | Shows the usage of an Octree for inserting 3D points in a defined boundary and performing a kNN search  |
| 3 | [quadtree.rs]quadtree.rs     | Shows the usage of a Quadtree for inserting 2D points in a defined boundary and performing a kNN search |
| 4 | [rtree.rs]rtree.rs           | Shows the usage of a 2D and 3D R-tree for inserting points and performing a kNN search                  |
| 5 | [rstar_tree.rs]rstar_tree.rs | Shows the usage of an R*-tree for inserting 2D and 3D points and performing a kNN search                |