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

Method ascending

mingus/core/scales.py:454–458  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

452 self.name = "{0} melodic minor".format(self.tonic)
453
454 def ascending(self):
455 notes = NaturalMinor(self.tonic).ascending()[:-1]
456 notes[5] = augment(notes[5])
457 notes[6] = augment(notes[6])
458 return notes * self.octaves + [notes[0]]
459
460 def descending(self):
461 notes = NaturalMinor(self.tonic).descending()[:-1]

Callers

nothing calls this directly

Calls 3

augmentFunction · 0.90
NaturalMinorClass · 0.85
ascendingMethod · 0.45

Tested by

no test coverage detected