New zifferjs documentation

This commit is contained in:
2023-12-09 23:47:12 +02:00
parent 204a5ae2ab
commit 819cca4385
12 changed files with 675 additions and 562 deletions

View File

@ -0,0 +1,20 @@
import { type Editor } from "../../../main";
import { makeExampleFactory } from "../../../Documentation";
export const ziffers_tonnetz = (application: Editor): string => {
const makeExample = makeExampleFactory(application);
return `
# Tonnetz
* TBD
${makeExample(
"Triad transformations",
`
z1('i').tonnetz("p l r").sound('wt_stereo')
.adsr(0, .1, 0, 0).out()`,
true,
)}
`;
};