trem-bin 0.1.0

TUI binary for the trem mathematical music engine
1
2
3
4
5
6
7
8
9
10
11
12
//! Default **demo** content for the `trem` binary: routing graph, mix constants, and starter pattern.
//!
//! - [`levels`] — all channel / bus / master numeric defaults in one place.
//! - [`graph`] — nested buses, instruments, and FX chain.
//! - [`pattern`] — 32-step grid.

pub mod graph;
pub mod levels;
pub mod pattern;

pub use graph::build_graph;
pub use pattern::build_pattern;