tunes 1.1.0

A music composition, synthesis, and audio generation library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Musical constants: notes, scales, and chords
//!
//! This module provides pre-defined constants for common musical elements:
//! - **Notes**: Standard pitch constants (A0-C8)
//! - **Scales**: Scale patterns and generators
//! - **Chords**: Chord patterns and builders

pub mod notes;
pub mod scales;
pub mod chords;

// Re-export everything for convenience
pub use notes::*;
pub use scales::*;
pub use chords::*;