This commit is contained in:
Felix Roos 2022-02-10 14:53:25 +01:00
parent cff3da3fd0
commit 8986399736
3 changed files with 24 additions and 12 deletions

3
docs/dist/tunes.js vendored
View file

@ -32,7 +32,7 @@ export const shapeShifted = `stack(
b1, b2, b1, b2, e2, e3, e2, e3,
a1, a2, a1, a2, a1, a2, a1, a2,
).rev()
).slow(16).rev()`;
).slow(16)`;
export const tetrisMidi = `${shapeShifted}.midi('IAC-Treiber Bus 1')`;
export const tetrisWithFunctions = `stack(sequence(
'e5', sequence('b4', 'c5'), 'd5', sequence('c5', 'b4'),
@ -171,3 +171,4 @@ export const whirlyStrudel = `mini("[e4 [b2 b3] c4]")
.every(3, x => x.slow(1.5))
.fast(slowcat(1.25,1,1.5))
.every(2, _ => mini("e4 ~ e3 d4 ~"))`;
export default shapeShifted;