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
//! Physics simulation module.
//!
//! This module provides the physics simulation using rapier2d.
//! It includes configuration management and the physics world wrapper.

pub mod config;
pub mod world;

pub use config::PhysicsConfig;
pub use world::{BallColor, PhysicsWorld};