amazeing 0.8.1

Amazeing is a maze generator/solver application with simulation/visualization.
1
2
3
4
5
6
7
8
9
10
11
pub(crate) mod display_loop;
pub(crate) mod helper;
pub(crate) mod scene;
pub(crate) mod unit;

/// Margin around the drawn grid (pixels at base zoom).
pub(crate) const MARGIN: f32 = 15.;
/// Gap between adjacent cells (pixels at base zoom).
pub(crate) const BORDER: f32 = 5.;
/// Circumscribed-circle radius of one cell (pixels at base zoom).
pub(crate) const RADIUS: f32 = 20.;