Return a list of lists [place_in_beat, possible_chords].
(self, shorthand=False)
| 186 | cont[2].transpose(interval, up) |
| 187 | |
| 188 | def determine_chords(self, shorthand=False): |
| 189 | """Return a list of lists [place_in_beat, possible_chords].""" |
| 190 | chords = [] |
| 191 | for x in self.bar: |
| 192 | chords.append([x[0], x[2].determine(shorthand)]) |
| 193 | return chords |
| 194 | |
| 195 | def determine_progression(self, shorthand=False): |
| 196 | """Return a list of lists [place_in_beat, possible_progressions].""" |