This commit is contained in:
Gregory Burd 2014-05-05 21:28:29 -04:00
parent 8ed5350684
commit 8f97282953
3 changed files with 32 additions and 0 deletions

24
.gitignore vendored Normal file
View file

@ -0,0 +1,24 @@
bject files
*.o
*.ko
*.obj
*.elf
# Libraries
*.lib
*.a
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

1
LICENSE Normal file
View file

@ -0,0 +1 @@
http://opensource.org/licenses/BSD-3-Clause

7
README Normal file
View file

@ -0,0 +1,7 @@
kdtree is a simple, easy to use C library for working with kd-trees.
Kd-trees are an extension of binary search trees to k-dimensional data. They facilitate very fast searching, and nearest-neighbor queries.
This particular implementation is designed to be efficient and very easy to use. It is completely written in ANSI/ISO C, and thus completely cross-platform.
http://code.google.com/p/kdtree/