MCPcopy Create free account
hub / github.com/bspaans/python-mingus / augmented_triad

Function augmented_triad

mingus/core/chords.py:222–233  ·  view source on GitHub ↗

Build an augmented triad on note. Example: >>> augmented_triad('C') ['C', 'E', 'G#']

(note)

Source from the content-addressed store, hash-verified

220
221
222def augmented_triad(note):
223 """Build an augmented triad on note.
224
225 Example:
226 >>> augmented_triad('C')
227 ['C', 'E', 'G#']
228 """
229 return [
230 note,
231 intervals.major_third(note),
232 notes.augment(intervals.major_fifth(note)),
233 ]
234
235
236def seventh(note, key):

Callers 2

augmented_major_seventhFunction · 0.85
augmented_minor_seventhFunction · 0.85

Calls 1

augmentMethod · 0.45

Tested by

no test coverage detected