pub struct Scale {
pub root: u8,
pub scale: ScaleType,
}Expand description
A key and scale combination.
Fields§
§root: u8MIDI note of the root (e.g. 60 = C4).
scale: ScaleTypeImplementations§
Source§impl Scale
impl Scale
pub fn new(root: u8, scale: ScaleType) -> Self
Sourcepub fn degree(&self, degree: i32, octave_offset: i32) -> u8
pub fn degree(&self, degree: i32, octave_offset: i32) -> u8
Return the MIDI note of scale degree degree (0-indexed) at octave offset.
Sourcepub fn midi_to_hz(midi: u8) -> f32
pub fn midi_to_hz(midi: u8) -> f32
Convert MIDI note to frequency in Hz.
Sourcepub fn octave_freqs(&self, octave: i32) -> Vec<f32>
pub fn octave_freqs(&self, octave: i32) -> Vec<f32>
All frequencies in one octave.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Scale
impl RefUnwindSafe for Scale
impl Send for Scale
impl Sync for Scale
impl Unpin for Scale
impl UnsafeUnpin for Scale
impl UnwindSafe for Scale
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more