diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..259b45c --- /dev/null +++ b/.gitignore @@ -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 + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b12b610 --- /dev/null +++ b/LICENSE @@ -0,0 +1 @@ +http://opensource.org/licenses/BSD-3-Clause diff --git a/README b/README new file mode 100644 index 0000000..f482a11 --- /dev/null +++ b/README @@ -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/