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

Method ascending

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

Source from the content-addressed store, hash-verified

503 self.name = "{0} minor Neapolitan".format(self.tonic)
504
505 def ascending(self):
506 notes = HarmonicMinor(self.tonic).ascending()[:-1]
507 notes[1] = diminish(notes[1])
508 return notes * self.octaves + [notes[0]]
509
510 def descending(self):
511 notes = NaturalMinor(self.tonic).descending()[:-1]

Callers

nothing calls this directly

Calls 3

diminishFunction · 0.90
HarmonicMinorClass · 0.85
ascendingMethod · 0.45

Tested by

no test coverage detected