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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.