├── .gitignore ├── .nojekyll ├── 100questions.md ├── CNAME ├── LICENSE ├── README.md ├── _sidebar.md ├── arithmetic.md ├── code-as-state.md ├── colors.md ├── embed.md ├── feedback.md ├── geometry.md ├── glsl.md ├── images ├── color-remapping-animation.gif └── cover.png ├── index.html ├── javascript.md ├── layers.md ├── modulation.md ├── motions.md ├── performing.md ├── script.js ├── style.css ├── symbols └── external.png ├── textures.md └── thoughts-on-modulation.md /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /100questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/100questions.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | hydra-book.glitches.me -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/README.md -------------------------------------------------------------------------------- /_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/_sidebar.md -------------------------------------------------------------------------------- /arithmetic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/arithmetic.md -------------------------------------------------------------------------------- /code-as-state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/code-as-state.md -------------------------------------------------------------------------------- /colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/colors.md -------------------------------------------------------------------------------- /embed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/embed.md -------------------------------------------------------------------------------- /feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/feedback.md -------------------------------------------------------------------------------- /geometry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/geometry.md -------------------------------------------------------------------------------- /glsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/glsl.md -------------------------------------------------------------------------------- /images/color-remapping-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/images/color-remapping-animation.gif -------------------------------------------------------------------------------- /images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/images/cover.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/index.html -------------------------------------------------------------------------------- /javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/javascript.md -------------------------------------------------------------------------------- /layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/layers.md -------------------------------------------------------------------------------- /modulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/modulation.md -------------------------------------------------------------------------------- /motions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/motions.md -------------------------------------------------------------------------------- /performing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/performing.md -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/script.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/style.css -------------------------------------------------------------------------------- /symbols/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/symbols/external.png -------------------------------------------------------------------------------- /textures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/textures.md -------------------------------------------------------------------------------- /thoughts-on-modulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micuat/hydra-book/HEAD/thoughts-on-modulation.md --------------------------------------------------------------------------------