Extend metal gallop+triplet section to 4 bars

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-29 16:47:22 -04:00
parent 3ce890c54c
commit 248594fb21
2 changed files with 2 additions and 2 deletions
Binary file not shown.
+2 -2
View File
@@ -193,9 +193,9 @@ def gen_tabla():
def gen_metal_blast():
score = Score("4/4", bpm=190)
# Showcase all metal patterns: groove → gallop → blast → cascade fill
# Showcase all metal patterns: groove → gallop → triplet fill → blast
score.drums("metal groove", repeats=2)
score.drums("metal gallop", repeats=2, fill="metal triplet", fill_every=2)
score.drums("metal gallop", repeats=4, fill="metal triplet", fill_every=4)
score.drums("metal blast", repeats=2, fill="metal cascade", fill_every=2)
score.drums("double kick", repeats=2, fill="metal blast", fill_every=2)
render("metal_blast", score)