use crate::NodeID; use glam::DVec3; pub mod mtree; pub mod octtree; pub trait SpatialTree { fn insert(&mut self, pos: DVec3, id: NodeID); fn depth(&self) -> usize; }