1
0

initial commit

This commit is contained in:
2025-02-26 07:33:14 +01:00
commit 13e794f44b
21 changed files with 515 additions and 0 deletions

12
random_lfo.scd Normal file
View File

@ -0,0 +1,12 @@
(
SynthDef(\randlfo, {
var sig;
sig = LFNoise0.ar(\rate.kr(1)).linlin(
-1,
1,
\min.kr(0),
\max.kr(1),
);
Out.ar(\out.kr(0), sig);
}).add;
)