├── .github └── FUNDING.yml ├── .gitignore ├── .prettierignore ├── LICENSE ├── README.md ├── assets └── cellpond-og-image.png ├── examples ├── bouncing-rocket.json ├── evil-brush.json ├── evil-lightning.json ├── fader.json ├── fractal.json ├── future-of-code-demo │ ├── 01-basic-sandbox.json │ ├── 02-basic-gloop.json │ ├── 03-edit-fader.json │ ├── 04-edit-evil-brush.json │ ├── 05-edit-evil-lightning.json │ ├── 06-split-splitter.json │ ├── 07-split-bouncing-rocket.json │ ├── 08-split-fractal.json │ ├── 09-end-huegene.json │ └── space.tldr ├── gloop.json ├── huegene.json ├── iclc-demo │ ├── 01-lightning.json │ ├── 02-fractal.json │ ├── 03-glass.json │ └── 04-huegene.json ├── pink-sand.json ├── resolution-booster.json ├── sandbox.json ├── slime-brush.json ├── space-warp.json ├── splash-demo │ ├── 01-basic-sandbox.json │ ├── 02-conservation-reed.json │ ├── 03-conservation-gloop.json │ ├── 04-edit-fader.json │ ├── 05-variable-balls.json │ ├── 06-turing-rule-110.json │ ├── 07-split-splitter.json │ ├── 08-split-maze.json │ ├── 09-split-fractal.json │ ├── 10-trains.json │ ├── 12-huegene.json │ └── deleted-tracks.json ├── splitter.json ├── tracks.json └── trains.json ├── index.html ├── legacy ├── index.html └── v1 │ ├── index.html │ ├── libraries │ ├── colour.js │ ├── habitat-embed.js │ ├── linked-list.js │ └── show.js │ └── the-one-true-todey-file-of-cellpond.js ├── libraries ├── colour.js ├── habitat-embed.js ├── linked-list.js ├── lz-string.js ├── pondiverse.js └── show.js └── the-one-true-todey-file-of-cellpond.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/.prettierignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/README.md -------------------------------------------------------------------------------- /assets/cellpond-og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/assets/cellpond-og-image.png -------------------------------------------------------------------------------- /examples/bouncing-rocket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/bouncing-rocket.json -------------------------------------------------------------------------------- /examples/evil-brush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/evil-brush.json -------------------------------------------------------------------------------- /examples/evil-lightning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/evil-lightning.json -------------------------------------------------------------------------------- /examples/fader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/fader.json -------------------------------------------------------------------------------- /examples/fractal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/fractal.json -------------------------------------------------------------------------------- /examples/future-of-code-demo/01-basic-sandbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/future-of-code-demo/01-basic-sandbox.json -------------------------------------------------------------------------------- /examples/future-of-code-demo/02-basic-gloop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/future-of-code-demo/02-basic-gloop.json -------------------------------------------------------------------------------- /examples/future-of-code-demo/03-edit-fader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/future-of-code-demo/03-edit-fader.json -------------------------------------------------------------------------------- /examples/future-of-code-demo/04-edit-evil-brush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/future-of-code-demo/04-edit-evil-brush.json -------------------------------------------------------------------------------- /examples/future-of-code-demo/05-edit-evil-lightning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/future-of-code-demo/05-edit-evil-lightning.json -------------------------------------------------------------------------------- /examples/future-of-code-demo/06-split-splitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/future-of-code-demo/06-split-splitter.json -------------------------------------------------------------------------------- /examples/future-of-code-demo/07-split-bouncing-rocket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/future-of-code-demo/07-split-bouncing-rocket.json -------------------------------------------------------------------------------- /examples/future-of-code-demo/08-split-fractal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/future-of-code-demo/08-split-fractal.json -------------------------------------------------------------------------------- /examples/future-of-code-demo/09-end-huegene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/future-of-code-demo/09-end-huegene.json -------------------------------------------------------------------------------- /examples/future-of-code-demo/space.tldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/future-of-code-demo/space.tldr -------------------------------------------------------------------------------- /examples/gloop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/gloop.json -------------------------------------------------------------------------------- /examples/huegene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/huegene.json -------------------------------------------------------------------------------- /examples/iclc-demo/01-lightning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/iclc-demo/01-lightning.json -------------------------------------------------------------------------------- /examples/iclc-demo/02-fractal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/iclc-demo/02-fractal.json -------------------------------------------------------------------------------- /examples/iclc-demo/03-glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/iclc-demo/03-glass.json -------------------------------------------------------------------------------- /examples/iclc-demo/04-huegene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/iclc-demo/04-huegene.json -------------------------------------------------------------------------------- /examples/pink-sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/pink-sand.json -------------------------------------------------------------------------------- /examples/resolution-booster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/resolution-booster.json -------------------------------------------------------------------------------- /examples/sandbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/sandbox.json -------------------------------------------------------------------------------- /examples/slime-brush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/slime-brush.json -------------------------------------------------------------------------------- /examples/space-warp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/space-warp.json -------------------------------------------------------------------------------- /examples/splash-demo/01-basic-sandbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/splash-demo/01-basic-sandbox.json -------------------------------------------------------------------------------- /examples/splash-demo/02-conservation-reed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/splash-demo/02-conservation-reed.json -------------------------------------------------------------------------------- /examples/splash-demo/03-conservation-gloop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/splash-demo/03-conservation-gloop.json -------------------------------------------------------------------------------- /examples/splash-demo/04-edit-fader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/splash-demo/04-edit-fader.json -------------------------------------------------------------------------------- /examples/splash-demo/05-variable-balls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/splash-demo/05-variable-balls.json -------------------------------------------------------------------------------- /examples/splash-demo/06-turing-rule-110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/splash-demo/06-turing-rule-110.json -------------------------------------------------------------------------------- /examples/splash-demo/07-split-splitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/splash-demo/07-split-splitter.json -------------------------------------------------------------------------------- /examples/splash-demo/08-split-maze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/splash-demo/08-split-maze.json -------------------------------------------------------------------------------- /examples/splash-demo/09-split-fractal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/splash-demo/09-split-fractal.json -------------------------------------------------------------------------------- /examples/splash-demo/10-trains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/splash-demo/10-trains.json -------------------------------------------------------------------------------- /examples/splash-demo/12-huegene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/splash-demo/12-huegene.json -------------------------------------------------------------------------------- /examples/splash-demo/deleted-tracks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/splash-demo/deleted-tracks.json -------------------------------------------------------------------------------- /examples/splitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/splitter.json -------------------------------------------------------------------------------- /examples/tracks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/tracks.json -------------------------------------------------------------------------------- /examples/trains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/examples/trains.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/index.html -------------------------------------------------------------------------------- /legacy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/legacy/index.html -------------------------------------------------------------------------------- /legacy/v1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/legacy/v1/index.html -------------------------------------------------------------------------------- /legacy/v1/libraries/colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/legacy/v1/libraries/colour.js -------------------------------------------------------------------------------- /legacy/v1/libraries/habitat-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/legacy/v1/libraries/habitat-embed.js -------------------------------------------------------------------------------- /legacy/v1/libraries/linked-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/legacy/v1/libraries/linked-list.js -------------------------------------------------------------------------------- /legacy/v1/libraries/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/legacy/v1/libraries/show.js -------------------------------------------------------------------------------- /legacy/v1/the-one-true-todey-file-of-cellpond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/legacy/v1/the-one-true-todey-file-of-cellpond.js -------------------------------------------------------------------------------- /libraries/colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/libraries/colour.js -------------------------------------------------------------------------------- /libraries/habitat-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/libraries/habitat-embed.js -------------------------------------------------------------------------------- /libraries/linked-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/libraries/linked-list.js -------------------------------------------------------------------------------- /libraries/lz-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/libraries/lz-string.js -------------------------------------------------------------------------------- /libraries/pondiverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/libraries/pondiverse.js -------------------------------------------------------------------------------- /libraries/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/libraries/show.js -------------------------------------------------------------------------------- /the-one-true-todey-file-of-cellpond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/CellPond/HEAD/the-one-true-todey-file-of-cellpond.js --------------------------------------------------------------------------------