def major_triad(note): """Build a major triad on note. Example: >>> major_triad('C') ['C', 'E', 'G'] """ return [note, intervals.major_third(note), intervals.perfect_fifth(note)]
def major_triad(note): """Builds a major triad on note. Example: {{{ >>> major_triad("C") ["C", "E", "G"] }}}""" return [note, intervals.major_third(note), intervals.perfect_fifth(note)]
def italian_augmented_sixth_chord(note): """Build an italian augmented sixth chord. Example: >>> italian_augmented_sixth_chord('C') ['C', 'E', 'A#'] """ return [note, intervals.major_third(note), intervals.augmented_sixth(note)]
def augmented_triad(note): """Build an augmented triad on note. Example: >>> augmented_triad('C') ['C', 'E', 'G#'] """ return [note, intervals.major_third(note), notes.augment(intervals.major_fifth(note))]
def augmented_triad(note): """Builds an augmented triad on note. Example: {{{ >>> augmented_triad("C") ["C", "E", "G#"] }}}""" return [note, intervals.major_third(note),\ notes.augment(intervals.major_fifth(note))]
def major_triad(note): """Builds a major triad on note. Example: {{{ >>> major_triad(\"C\") [\"C\", \"E\", \"G\"] }}}""" return [note, intervals.major_third(note), intervals.perfect_fifth(note)]
def augmented_triad(note): """Builds an augmented triad on note. Example: {{{ >>> augmented_triad(\"C\") [\"C\", \"E\", \"G#\"] }}}""" return [note, intervals.major_third(note), notes.augment(intervals.major_fifth(note))]
def french_augmented_sixth_chord(note): """Build an french augmented sixth chord. Example: >>> french_augmented_sixth_chord('C') ['C', 'E', 'F#', 'A#'] """ return [ note, intervals.major_third(note), intervals.augmented_fourth(note), intervals.augmented_sixth(note) ]
def augmented_triad(note): """Builds an augmented triad on note. Example: {{{ >>> augmented_triad(\"C\") [\"C\", \"E\", \"G#\"] }}}""" return [ note, intervals.major_third(note), notes.augment(intervals.major_fifth(note)) ]