build
This commit is contained in:
parent
ad777ed183
commit
fabfee5976
3 changed files with 58 additions and 1 deletions
16
docs/dist/parse.js
vendored
16
docs/dist/parse.js
vendored
|
|
@ -5,7 +5,21 @@ import "./tone.js";
|
|||
import "./midi.js";
|
||||
import * as toneStuff from "./tone.js";
|
||||
import shapeshifter from "./shapeshifter.js";
|
||||
const {pure, stack, slowcat, fastcat, cat, sequence, polymeter, pm, polyrhythm, pr, silence, Fraction} = strudel;
|
||||
const {
|
||||
pure,
|
||||
stack,
|
||||
slowcat,
|
||||
fastcat,
|
||||
cat,
|
||||
sequence,
|
||||
polymeter,
|
||||
pm,
|
||||
polyrhythm,
|
||||
pr,
|
||||
silence,
|
||||
Fraction,
|
||||
timeCat
|
||||
} = strudel;
|
||||
const {autofilter, filter, gain} = toneStuff;
|
||||
function reify(thing) {
|
||||
if (thing?.constructor?.name === "Pattern") {
|
||||
|
|
|
|||
8
docs/dist/tunes.js
vendored
8
docs/dist/tunes.js
vendored
|
|
@ -1,3 +1,11 @@
|
|||
export const timeCat = `stack(
|
||||
timeCat([3, c3], [1, stack(eb3, g3, m(c4, d4).slow(2))]),
|
||||
m(c2, g2),
|
||||
sequence(
|
||||
timeCat([5, eb4], [3, m(f4, eb4, d4)]),
|
||||
m(eb4, c4).slow(2)
|
||||
).slow(4)
|
||||
)`;
|
||||
export const shapeShifted = `stack(
|
||||
sequence(
|
||||
e5, [b4, c5], d5, [c5, b4],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue