use crate::*;
/// A grid cell key for 2D spatial partitioning, combining x and y indices.
pub type CellKey2D = ;
/// A grid cell key for 3D spatial partitioning, combining x, y, and z indices.
pub type CellKey3D = ;
/// A list of body indices stored within a single grid cell.
pub type CellEntries = ;
/// A hash map from 2D cell keys to lists of body indices.
pub type SpatialCellMap2D = ;
/// A hash map from 3D cell keys to lists of body indices.
pub type SpatialCellMap3D = ;