simple-octree 0.1.0

A simple octree implementation written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
// Linting
#![warn(rust_2018_idioms)]
#![deny(clippy::all)]
#![warn(clippy::pedantic, clippy::nursery)]
#![allow(clippy::module_name_repetitions)]

mod octree;

pub use octree::Octree;