moving more files around
This commit is contained in:
@ -1,11 +1,15 @@
|
|||||||
import { type Editor } from "./main";
|
import { type Editor } from "./main";
|
||||||
|
// Basics
|
||||||
import { introduction } from "./documentation/basics/welcome";
|
import { introduction } from "./documentation/basics/welcome";
|
||||||
import { software_interface } from "./documentation/basics/interface";
|
import { software_interface } from "./documentation/basics/interface";
|
||||||
import { shortcuts } from "./documentation/basics/keyboard";
|
import { shortcuts } from "./documentation/basics/keyboard";
|
||||||
import { code } from "./documentation/basics/code";
|
import { code } from "./documentation/basics/code";
|
||||||
import { mouse } from "./documentation/basics/mouse";
|
import { mouse } from "./documentation/basics/mouse";
|
||||||
import { oscilloscope } from "./documentation/oscilloscope";
|
// More
|
||||||
import { synchronisation } from "./documentation/synchronisation";
|
import { oscilloscope } from "./documentation/more/oscilloscope";
|
||||||
|
import { synchronisation } from "./documentation/more/synchronisation";
|
||||||
|
import { about } from "./documentation/more/about";
|
||||||
|
import { bonus } from "./documentation/more/bonus";
|
||||||
import { samples } from "./documentation/samples";
|
import { samples } from "./documentation/samples";
|
||||||
import { chaining } from "./documentation/chaining";
|
import { chaining } from "./documentation/chaining";
|
||||||
import { interaction } from "./documentation/interaction";
|
import { interaction } from "./documentation/interaction";
|
||||||
@ -14,7 +18,6 @@ import { linear_time } from "./documentation/time/linear_time";
|
|||||||
import { cyclical_time } from "./documentation/time/cyclical_time";
|
import { cyclical_time } from "./documentation/time/cyclical_time";
|
||||||
import { long_forms } from "./documentation/long_forms";
|
import { long_forms } from "./documentation/long_forms";
|
||||||
import { midi } from "./documentation/midi";
|
import { midi } from "./documentation/midi";
|
||||||
import { about } from "./documentation/about";
|
|
||||||
import { sound } from "./documentation/engine";
|
import { sound } from "./documentation/engine";
|
||||||
import { patterns } from "./documentation/patterns";
|
import { patterns } from "./documentation/patterns";
|
||||||
import { functions } from "./documentation/functions";
|
import { functions } from "./documentation/functions";
|
||||||
@ -24,7 +27,6 @@ import { lfos } from "./documentation/lfos";
|
|||||||
import { ziffers } from "./documentation/ziffers";
|
import { ziffers } from "./documentation/ziffers";
|
||||||
import { reference } from "./documentation/reference";
|
import { reference } from "./documentation/reference";
|
||||||
import { synths } from "./documentation/synths";
|
import { synths } from "./documentation/synths";
|
||||||
import { bonus } from "./documentation/bonus";
|
|
||||||
|
|
||||||
// Setting up the Markdown converter with syntax highlighting
|
// Setting up the Markdown converter with syntax highlighting
|
||||||
import showdown from "showdown";
|
import showdown from "showdown";
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
import { type Editor } from "../main";
|
import { type Editor } from "../../main";
|
||||||
import { key_shortcut, makeExampleFactory } from "../Documentation";
|
import { key_shortcut, makeExampleFactory } from "../../Documentation";
|
||||||
|
|
||||||
export const bonus = (application: Editor): string => {
|
export const bonus = (application: Editor): string => {
|
||||||
const makeExample = makeExampleFactory(application);
|
const makeExample = makeExampleFactory(application);
|
||||||
@ -1,5 +1,5 @@
|
|||||||
import { type Editor } from "../main";
|
import { type Editor } from "../../main";
|
||||||
import { makeExampleFactory } from "../Documentation";
|
import { makeExampleFactory } from "../../Documentation";
|
||||||
|
|
||||||
export const oscilloscope = (application: Editor): string => {
|
export const oscilloscope = (application: Editor): string => {
|
||||||
const makeExample = makeExampleFactory(application);
|
const makeExample = makeExampleFactory(application);
|
||||||
@ -24,7 +24,7 @@ scope({
|
|||||||
})
|
})
|
||||||
`,
|
`,
|
||||||
true
|
true
|
||||||
)}
|
)}
|
||||||
|
|
||||||
${makeExample(
|
${makeExample(
|
||||||
"Demo with multiple scope mode",
|
"Demo with multiple scope mode",
|
||||||
@ -45,7 +45,7 @@ scope({enabled: true, thickness: 8,
|
|||||||
size: 0.5, fftSize: 2048})
|
size: 0.5, fftSize: 2048})
|
||||||
`,
|
`,
|
||||||
true
|
true
|
||||||
)}
|
)}
|
||||||
|
|
||||||
Note that these values can be patterned as well! You can transform the oscilloscope into its own light show if you want. The picture is not stable anyway so you won't have much use of it for precision work :)
|
Note that these values can be patterned as well! You can transform the oscilloscope into its own light show if you want. The picture is not stable anyway so you won't have much use of it for precision work :)
|
||||||
|
|
||||||
@ -1,5 +1,5 @@
|
|||||||
import { type Editor } from "../main";
|
import { type Editor } from "../../main";
|
||||||
import { makeExampleFactory } from "../Documentation";
|
import { makeExampleFactory } from "../../Documentation";
|
||||||
|
|
||||||
export const synchronisation = (app: Editor): string => {
|
export const synchronisation = (app: Editor): string => {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
Reference in New Issue
Block a user