ballin 0.1.2

A colorful interactive physics simulator with thousands of balls, but in your terminal.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Ballin - A physics simulation in the terminal.
//!
//! This library provides a terminal-based physics simulation that displays
//! thousands of balls using Unicode Braille characters.

pub mod app;
pub mod error;
pub mod event;
pub mod physics;
pub mod render;
pub mod save;
pub mod shapes;
pub mod timing;
pub mod ui;

pub use app::{App, MAX_BALLS};
pub use error::{AppError, AppResult};