oktree 0.5.1

Fast octree implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Crate's core types reimports.

pub use crate::{
    bounding::{Aabb, TUVec3, TUVec3u128, TUVec3u16, TUVec3u32, TUVec3u64, TUVec3u8, Unsigned},
    node::NodeType,
    tree::Octree,
    ElementId, NodeId, Position, TreeError, Volume,
};

#[cfg(feature = "bevy")]
pub use crate::bevy_integration::HitResult;