1//! A module for rendering each of the 2D and 3D [`bevy_math::primitives`] with [`crate::prelude::Gizmos`]. 2 3pub mod dim2; 4pub mod dim3; 5pub(crate) mod helpers; 6 7