Return an iterator that iterates through every bar in the this track.
(self)
| 85 | return self.bars[-1].place_notes(note, duration) |
| 86 | |
| 87 | def get_notes(self): |
| 88 | """Return an iterator that iterates through every bar in the this |
| 89 | track.""" |
| 90 | for bar in self.bars: |
| 91 | for beat, duration, notes in bar: |
| 92 | yield beat, duration, notes |
| 93 | |
| 94 | def from_chords(self, chords, duration=1): |
| 95 | """Add chords to the Track. |
no outgoing calls