├── .gitignore ├── README.md ├── glitch ├── Glitch.tox ├── README.md ├── screenshot.jpg └── text.glitching.toe ├── glsl-geometry-shader └── geometry-shader.toe ├── motion-library ├── Motion_Library-0.2.tox ├── README.md └── math-for-motion.toe ├── point-cloud-particles └── pointcloud-particles.toe └── reaction-diffusion ├── README.md ├── Reaction_Diffusion-0.1.tox ├── reaction-diffusion.toe └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | **/*/Backup/ 2 | **/*.*.toe 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Touchdesigner Experiments 2 | -------------------------------------------------------------------------------- /glitch/Glitch.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/sketchbook.touchdesigner/1d324f697ea9b883a1eeb7c34da2789248a33c37/glitch/Glitch.tox -------------------------------------------------------------------------------- /glitch/README.md: -------------------------------------------------------------------------------- 1 | # GLSL Glitch Effect 2 | 3 | ![Preview](screenshot.jpg) 4 | -------------------------------------------------------------------------------- /glitch/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/sketchbook.touchdesigner/1d324f697ea9b883a1eeb7c34da2789248a33c37/glitch/screenshot.jpg -------------------------------------------------------------------------------- /glitch/text.glitching.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/sketchbook.touchdesigner/1d324f697ea9b883a1eeb7c34da2789248a33c37/glitch/text.glitching.toe -------------------------------------------------------------------------------- /glsl-geometry-shader/geometry-shader.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/sketchbook.touchdesigner/1d324f697ea9b883a1eeb7c34da2789248a33c37/glsl-geometry-shader/geometry-shader.toe -------------------------------------------------------------------------------- /motion-library/Motion_Library-0.2.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/sketchbook.touchdesigner/1d324f697ea9b883a1eeb7c34da2789248a33c37/motion-library/Motion_Library-0.2.tox -------------------------------------------------------------------------------- /motion-library/README.md: -------------------------------------------------------------------------------- 1 | # Motion Library 2 | 3 | Inspired by [Math for Motion](https://soulwire.co.uk/math-for-motion/)/Justin Windle 4 | -------------------------------------------------------------------------------- /motion-library/math-for-motion.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/sketchbook.touchdesigner/1d324f697ea9b883a1eeb7c34da2789248a33c37/motion-library/math-for-motion.toe -------------------------------------------------------------------------------- /point-cloud-particles/pointcloud-particles.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/sketchbook.touchdesigner/1d324f697ea9b883a1eeb7c34da2789248a33c37/point-cloud-particles/pointcloud-particles.toe -------------------------------------------------------------------------------- /reaction-diffusion/README.md: -------------------------------------------------------------------------------- 1 | # Reaction Diffusion 2 | 3 | ![](screenshot.png) 4 | -------------------------------------------------------------------------------- /reaction-diffusion/Reaction_Diffusion-0.1.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/sketchbook.touchdesigner/1d324f697ea9b883a1eeb7c34da2789248a33c37/reaction-diffusion/Reaction_Diffusion-0.1.tox -------------------------------------------------------------------------------- /reaction-diffusion/reaction-diffusion.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/sketchbook.touchdesigner/1d324f697ea9b883a1eeb7c34da2789248a33c37/reaction-diffusion/reaction-diffusion.toe -------------------------------------------------------------------------------- /reaction-diffusion/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/sketchbook.touchdesigner/1d324f697ea9b883a1eeb7c34da2789248a33c37/reaction-diffusion/screenshot.png --------------------------------------------------------------------------------