From 8f97282953b6152646bcd0f240565800da8461b6 Mon Sep 17 00:00:00 2001 From: Gregory Burd Date: Mon, 5 May 2014 21:28:29 -0400 Subject: [PATCH] basics --- .gitignore | 24 ++++++++++++++++++++++++ LICENSE | 1 + README | 7 +++++++ 3 files changed, 32 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README 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/