HarmonicField

public enum HarmonicField: Int, Codable

Stack of notes to generate chords for each note in the scale.

  • First, third and fifth degree notes builds a triad chord.

    Declaration

    Swift

    case triad
  • First, third, fifth and seventh notes builds a tetrad chord.

    Declaration

    Swift

    case tetrad
  • First, third, fifth, seventh and ninth notes builds a 9th chord.

    Declaration

    Swift

    case ninth
  • First, third, fifth, seventh, ninth and eleventh notes builds a 11th chord.

    Declaration

    Swift

    case eleventh
  • First, third, fifth, seventh, ninth, eleventh and thirteenth notes builds a 13th chord.

    Declaration

    Swift

    case thirteenth