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

Function diminished_triad

mingus/core/chords.py:212–219  ·  view source on GitHub ↗

Build a diminished triad on note. Example: >>> diminished_triad('C') ['C', 'Eb', 'Gb']

(note)

Source from the content-addressed store, hash-verified

210
211
212def diminished_triad(note):
213 """Build a diminished triad on note.
214
215 Example:
216 >>> diminished_triad('C')
217 ['C', 'Eb', 'Gb']
218 """
219 return [note, intervals.minor_third(note), intervals.minor_fifth(note)]
220
221
222def augmented_triad(note):

Callers 2

half_diminished_seventhFunction · 0.85
diminished_seventhFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected