Open
Description
Beam lengths look good in the examples/beams.py
example, but it seems the beams doc page examples run into a case where the beams are too long.
staff = Staff(ORIGIN, None, Mm(100))
Clef(ZERO, staff, 'treble')
chords = [
Chordrest(Mm(0), staff, ["c"], (3, 16)),
Chordrest(Mm(10), staff, ["e"], (1, 16)),
Chordrest(Mm(20), staff, ["g"], (1, 8)),
Chordrest(Mm(30), staff, ["bb"], (1, 8))
]
BeamGroup(chords)