Skip to content

K-dimensional tree space-partitioning data structure

License

Notifications You must be signed in to change notification settings

swizard0/kdtree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

K-dimensional tree space-partitioning data structure

Overview

The k-d tree is a binary tree in which every node is a k-dimensional point. Every non-leaf node can be thought of as implicitly generating a splitting hyperplane that divides the space into two parts, known as half-spaces. Points to the left of this hyperplane are represented by the left subtree of that node and points right of the hyperplane are represented by the right subtree.

Read more on wikipedia

Additional specific features are implemented in the current library for collision detection tasks. By splitting objects bounding volumes it allows not only to detect the fact of collision, but also to locate a collision point for complex objects with the given accuracy.

Visualizer: kdtree-demo

kdtree visualizer

Example usage

See library tests section or kdtree demo visualizer code.

Authors

  • Alexey Voznyuk - Initial work - swizard0

License

This project is licensed under the MIT License - see the LICENSE file for details

About

K-dimensional tree space-partitioning data structure

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages