Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 1.01 KB

File metadata and controls

9 lines (8 loc) · 1.01 KB

Spart Examples

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