From 407ac5f0de7a37ac2afa64af8641e1689c44346e Mon Sep 17 00:00:00 2001 From: littleisland <> Date: Tue, 12 Aug 2025 19:33:19 +0900 Subject: [PATCH] create/update '20250812.md' file --- strudel/20250812.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/strudel/20250812.md b/strudel/20250812.md index ed1842c..1aa53a5 100644 --- a/strudel/20250812.md +++ b/strudel/20250812.md @@ -35,8 +35,35 @@ $:stack( .lpq(15) $:sound("pink").decay(0.1).hpf(800) +``` +```javascript +setcps(60/60/4) +const base = stack( + note("").sound("sine"), + note("").sound("sine").gain(0.5), + note("").sound("sine").gain(0.25), + note("").sound("sine").gain(0.15), + note("< >".late(1)).fast(2).sound("sine").gain(0.0625), +).delay(0.75).room(0.3) +$_:base.postgain(sine.range(0.1,0.5).slow(3)).fast(4).jux(rev) + .fm(2).fmh(2) + .lpf(sine.range(100,600).seg(5).slow(2)).lpq(15) + +$:base.postgain(0.2).fast(4).phaser(4) + .penv(2) + .lpf(tri.range(60,200).seg(14).fast(2)).lpq("<5 10 15 20 25>".fast(8)) + +$:base.postgain(0.2).fast(2).decay(16) + .lpenv(2) + .lpf(sine.range(200,400).seg(3).fast(8)).lpq(20) + +$_:base.postgain(0.2).decay("<1 8>").fast(2) + .lpf(perlin.range(400,900).seg(5).slow(3)).lpq(25) + +all(x=>x._scope() +```