generic_octree/
lib.rs

1#![cfg_attr(nightly, feature(trait_alias))]
2
3pub mod aabb;
4
5mod loc_code;
6mod node;
7mod octree;
8mod orientation;
9
10#[cfg(feature = "render")]
11pub mod render;
12
13#[cfg(feature = "vox")]
14pub mod dot_vox;
15
16pub use aabb::{Plane, AABB};
17pub use loc_code::LocCode;
18pub use node::OctreeNode;
19pub use octree::Octree;
20pub use orientation::Orientation;
21
22#[cfg(feature = "render")]
23pub use render::{Model, Vertex};