Diminish the NoteContainers in Bar.
(self)
| 173 | cont[2].augment() |
| 174 | |
| 175 | def diminish(self): |
| 176 | """Diminish the NoteContainers in Bar.""" |
| 177 | for cont in self.bar: |
| 178 | cont[2].diminish() |
| 179 | |
| 180 | def transpose(self, interval, up=True): |
| 181 | """Transpose the notes in the bar up or down the interval. |
no outgoing calls