ukebox 0.4.0

A ukulele chord finder in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
mod chord_diagram;
mod string_diagram;

pub use self::chord_diagram::ChordDiagram;
pub use self::string_diagram::StringDiagram;

use crate::note::Semitones;

/// Number of frets shown on the fretboard chart.
pub const CHART_WIDTH: Semitones = 4;