Metal demo: groove → gallop → blast → double kick with fills

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-29 16:44:53 -04:00
parent f85504b456
commit 499c49b6eb
2 changed files with 6 additions and 2 deletions
Binary file not shown.
+6 -2
View File
@@ -192,8 +192,12 @@ def gen_tabla():
# ── Marching snare ───────────────────────────────────────────────────────
def gen_metal_blast():
score = Score("4/4", bpm=200)
score.drums("metal blast", repeats=8, fill="metal cascade", fill_every=4)
score = Score("4/4", bpm=190)
# Showcase all metal patterns: groove → gallop → blast → cascade fill
score.drums("metal groove", repeats=2)
score.drums("metal gallop", repeats=2, fill="metal triplet", fill_every=2)
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)