e2rcore/implement/math/
clusterbox.rs

1#[derive(Debug, Clone)]
2pub struct ClusterBox {
3    ///stores instance ids into grid box clusters
4    pub _dim: [f32;3],
5    pub _divisions: [usize;3],
6}
7