zoa 0.1.0

3D ASCII renderer for terminals with shapes, particles, and effects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod countdown;
pub mod cube;
pub mod gif;
pub mod mesh;
pub mod particles;
pub mod sdf;
pub mod sphere;
pub mod torus;

pub use countdown::{Countdown, CountdownState};
pub use cube::Cube;
pub use gif::AnimatedGif;
pub use mesh::{Mesh, Triangle};
pub use particles::{ParticlePreset, ParticleSystem};
pub use sdf::{SdfPreset, SdfScene};
pub use sphere::Sphere;
pub use torus::Torus;