summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2020-05-27 13:55:59 -0400
committerTavian Barnes <tavianator@tavianator.com>2020-06-24 10:02:23 -0400
commita6e586d3f1368e4ecbe56b6481e8bca2ec8e7bb9 (patch)
treef9f598aaea26033339a3797899d1a557d2209974 /src/lib.rs
parente272ede323d74d1dd30d28fd862099376b49265b (diff)
downloadacap-a6e586d3f1368e4ecbe56b6481e8bca2ec8e7bb9.tar.xz
kd: Implement k-d trees
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index e7312bf..8f7487b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -6,6 +6,7 @@ pub mod coords;
pub mod distance;
pub mod euclid;
pub mod exhaustive;
+pub mod kd;
pub mod vp;
mod util;