resonata 0.3.0

A music theory library for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod intervals;
pub mod notes;
pub mod scales;
pub mod chords;
pub mod error;

pub use intervals::IntervalQuality;
pub use intervals::IntervalSize;
pub use intervals::Interval;
pub use notes::Note;
pub use notes::PitchedNote;
pub use scales::Scale;
pub use error::ResonataError;
pub use std::str::FromStr;
// pub use chords::Chord;