├── 0-getting-started.js ├── 1-blending.js ├── 10-midi.js ├── 11-texteditor.js ├── 2-feedback.js ├── 3-functions.js ├── 4-audio-reactivity.js ├── 5-video.js ├── 6-p5.js ├── 7-p5-video.js ├── 8-osc-tidal-supercollider.js ├── 8-osc.js ├── 9-custom-shaders.js ├── README.md ├── assets └── jelly.webm ├── processing └── oscP5example │ └── oscP5example.pde └── tidal └── tidal-forward.scd /0-getting-started.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydra-synth/hydra-examples/HEAD/0-getting-started.js -------------------------------------------------------------------------------- /1-blending.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydra-synth/hydra-examples/HEAD/1-blending.js -------------------------------------------------------------------------------- /10-midi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydra-synth/hydra-examples/HEAD/10-midi.js -------------------------------------------------------------------------------- /11-texteditor.js: -------------------------------------------------------------------------------- 1 | // how to code atom from within itself 2 | -------------------------------------------------------------------------------- /2-feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydra-synth/hydra-examples/HEAD/2-feedback.js -------------------------------------------------------------------------------- /3-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydra-synth/hydra-examples/HEAD/3-functions.js -------------------------------------------------------------------------------- /4-audio-reactivity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydra-synth/hydra-examples/HEAD/4-audio-reactivity.js -------------------------------------------------------------------------------- /5-video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydra-synth/hydra-examples/HEAD/5-video.js -------------------------------------------------------------------------------- /6-p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydra-synth/hydra-examples/HEAD/6-p5.js -------------------------------------------------------------------------------- /7-p5-video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydra-synth/hydra-examples/HEAD/7-p5-video.js -------------------------------------------------------------------------------- /8-osc-tidal-supercollider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydra-synth/hydra-examples/HEAD/8-osc-tidal-supercollider.js -------------------------------------------------------------------------------- /8-osc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydra-synth/hydra-examples/HEAD/8-osc.js -------------------------------------------------------------------------------- /9-custom-shaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydra-synth/hydra-examples/HEAD/9-custom-shaders.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydra-synth/hydra-examples/HEAD/README.md -------------------------------------------------------------------------------- /assets/jelly.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydra-synth/hydra-examples/HEAD/assets/jelly.webm -------------------------------------------------------------------------------- /processing/oscP5example/oscP5example.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydra-synth/hydra-examples/HEAD/processing/oscP5example/oscP5example.pde -------------------------------------------------------------------------------- /tidal/tidal-forward.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydra-synth/hydra-examples/HEAD/tidal/tidal-forward.scd --------------------------------------------------------------------------------