pub trait HasPrimaryHarmonicSeries {
    // Required method
    fn primary_harmonic_series(self) -> Vec<Note>;
}
Expand description

A trait which allows for obtaining the primary harmonic series of the note.

Required Methods§

source

fn primary_harmonic_series(self) -> Vec<Note>

Returns the primary harmonic series of the note.

Implementors§