Scales

public enum Scales

Static scale dictionaries

  • The note to value dictionary

    Declaration

    Swift

    static var noteValueDict: [Chord.Root : Int] { get }
  • The value to note dictionary

    Declaration

    Swift

    static var valueNoteDict: [Int : [Chord.Root]] { get }
  • The sharped scale dictionary

    Declaration

    Swift

    static var sharpedScale: [Int : Chord.Root] { get }
  • The flatted scale dictionary

    Declaration

    Swift

    static var flattedScale: [Int : Chord.Root] { get }
  • The scale to value dictionary

    Declaration

    Swift

    static var scaleValueDict: [Chord.Root : [Int : Chord.Root]] { get }