summaryrefslogtreecommitdiff
path: root/src/spatial/mod.rs
blob: c09824d79305a6bc4b2c45b789b84053db262545 (plain)
1
2
3
4
5
6
7
8
9
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;
}