├── .gitignore ├── .nojekyll ├── LICENSE ├── README.md ├── core ├── Bounds.js ├── Defaults.js ├── MIDIControl.js ├── Node.js ├── Path.js ├── SVGLoader.js ├── World.js ├── package-lock.json └── package.json ├── docs ├── Bounds.js.html ├── Defaults.js.html ├── Node.js.html ├── Path.js.html ├── SVGLoader.js.html ├── World.js.html ├── index.html ├── module-Bounds-Bounds.html ├── module-Bounds.html ├── module-Defaults.html ├── module-Node-Node.html ├── module-Node.html ├── module-Path-Path.html ├── module-Path.html ├── module-SVGLoader-SVGLoader.html ├── module-SVGLoader.html ├── module-World-World.html ├── module-World.html ├── scripts │ ├── collapse.js │ ├── jquery-3.1.1.min.js │ ├── linenumber.js │ ├── prettify │ │ ├── Apache-License-2.0.txt │ │ ├── lang-css.js │ │ └── prettify.js │ └── search.js └── styles │ ├── jsdoc.css │ └── prettify.css ├── experiments ├── 01 - single line │ ├── README.md │ ├── dist │ │ ├── app.min.js │ │ └── style.min.css │ ├── images │ │ ├── 01-growth-in-trace-mode.png │ │ ├── 01-growth-process-with-inverted-colors.gif │ │ ├── 01-growth-process.gif │ │ ├── 01-inverted-colors.png │ │ ├── 01-line-after-growth.png │ │ ├── 01-starting-point.png │ │ └── social-media-preview.png │ ├── index.html │ └── js │ │ ├── Settings.js │ │ └── entry.js ├── 02 - simple closed shape │ ├── README.md │ ├── dist │ │ ├── app.min.js │ │ └── style.min.css │ ├── images │ │ ├── 02-circle-growth-debug-trace-mode.gif │ │ ├── 02-circle-growth-inverted.gif │ │ ├── 02-circle-partial-growth.png │ │ ├── 02-square-growth-filled.gif │ │ ├── 02-square-inverted-trace-mode.png │ │ ├── 02-square-inverted.png │ │ ├── 02-starting-point-triangle.png │ │ ├── 02-triangle-growth-15s.png │ │ ├── 02-triangle-growth-5s.png │ │ ├── 02-triangle-growth-debug-mode.gif │ │ ├── 02-triangle-growth.gif │ │ ├── 02-triangle-trace-mode.png │ │ └── social-media-preview.png │ ├── index.html │ └── js │ │ ├── Settings.js │ │ └── entry.js ├── 03 - multiple shapes │ ├── README.md │ ├── dist │ │ ├── app.min.js │ │ └── style.min.css │ ├── images │ │ ├── 03-growth-after-30s.png │ │ ├── 03-growth-after-5s.png │ │ ├── 03-growth-inverted-with-colors.gif │ │ ├── 03-growth-normal.gif │ │ ├── 03-inverted-colors-trace-mode.png │ │ ├── 03-inverted-with-colors.png │ │ ├── 03-inverted.png │ │ ├── 03-shapes-filled.png │ │ ├── 03-starting-point.png │ │ └── social-media-preview.png │ ├── index.html │ └── js │ │ ├── Settings.js │ │ └── entry.js ├── 04 - SVG as input │ ├── README.md │ ├── dist │ │ ├── app.min.js │ │ └── style.min.css │ ├── images │ │ ├── 04-hello-world-after-10s.png │ │ ├── 04-hello-world-after-3s.png │ │ ├── 04-hello-world-growth-process.gif │ │ ├── 04-hello-world-start.png │ │ ├── 04-superformula-growth-process-inverted.gif │ │ └── social-media-preview.png │ ├── index.html │ ├── js │ │ ├── Settings.js │ │ └── entry.js │ └── svg │ │ ├── differential-growth.svg │ │ ├── gnu.svg │ │ ├── hello-world-serif.svg │ │ └── superformula.svg ├── 05 - line studies │ ├── README.md │ ├── dist │ │ ├── app.min.js │ │ └── style.min.css │ ├── images │ │ ├── 01-hor-lines-growth-process.gif │ │ ├── 02-vert-lines-trace-process.gif │ │ ├── 03-opp-arcs-process.gif │ │ ├── 04-circle-trace-process.gif │ │ ├── 05-circle-trace.png │ │ ├── 06-hor-solid-trace.png │ │ ├── 07-vert-trace.png │ │ ├── 08-opp-arcs-solid-trace.png │ │ └── social-media-preview.png │ ├── index.html │ └── js │ │ ├── Settings.js │ │ └── entry.js ├── 06 - shape studies │ ├── README.md │ ├── dist │ │ ├── app.min.js │ │ └── style.min.css │ ├── images │ │ ├── CIRCLES.gif │ │ ├── Phyllotaxis-inverted-process.gif │ │ ├── Phyllotaxis-inverted.png │ │ ├── Phyllotaxis-time-plot-process.gif │ │ ├── Phyllotaxis-time-plot.png │ │ ├── SQUARES.gif │ │ ├── TRIANGLES.gif │ │ ├── phyllotaxis.png │ │ └── social-media-preview.png │ ├── index.html │ ├── js │ │ ├── Settings.js │ │ └── entry.js │ ├── package-lock.json │ └── package.json ├── 07 - bounds │ ├── README.md │ ├── dist │ │ ├── app.min.js │ │ └── style.min.css │ ├── images │ │ ├── circle-process.gif │ │ ├── circle.png │ │ ├── maze-process.gif │ │ ├── multiple-shapes-pocess.gif │ │ ├── social-media-preview.png │ │ ├── square-process.gif │ │ ├── square.png │ │ ├── text-process.gif │ │ └── text.png │ ├── index.html │ └── js │ │ ├── Settings.js │ │ └── entry.js └── playground │ ├── README.md │ ├── dist │ ├── app.min.js │ └── style.min.css │ ├── images │ └── social-media-preview.png │ ├── index.html │ ├── js │ ├── ParametersPanel.js │ ├── Settings.js │ └── entry.js │ └── style.css ├── gulpfile.babel.js ├── index.html ├── package.json ├── social-media-preview.png └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/README.md -------------------------------------------------------------------------------- /core/Bounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/core/Bounds.js -------------------------------------------------------------------------------- /core/Defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/core/Defaults.js -------------------------------------------------------------------------------- /core/MIDIControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/core/MIDIControl.js -------------------------------------------------------------------------------- /core/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/core/Node.js -------------------------------------------------------------------------------- /core/Path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/core/Path.js -------------------------------------------------------------------------------- /core/SVGLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/core/SVGLoader.js -------------------------------------------------------------------------------- /core/World.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/core/World.js -------------------------------------------------------------------------------- /core/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/core/package-lock.json -------------------------------------------------------------------------------- /core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/core/package.json -------------------------------------------------------------------------------- /docs/Bounds.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/Bounds.js.html -------------------------------------------------------------------------------- /docs/Defaults.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/Defaults.js.html -------------------------------------------------------------------------------- /docs/Node.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/Node.js.html -------------------------------------------------------------------------------- /docs/Path.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/Path.js.html -------------------------------------------------------------------------------- /docs/SVGLoader.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/SVGLoader.js.html -------------------------------------------------------------------------------- /docs/World.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/World.js.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/module-Bounds-Bounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/module-Bounds-Bounds.html -------------------------------------------------------------------------------- /docs/module-Bounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/module-Bounds.html -------------------------------------------------------------------------------- /docs/module-Defaults.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/module-Defaults.html -------------------------------------------------------------------------------- /docs/module-Node-Node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/module-Node-Node.html -------------------------------------------------------------------------------- /docs/module-Node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/module-Node.html -------------------------------------------------------------------------------- /docs/module-Path-Path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/module-Path-Path.html -------------------------------------------------------------------------------- /docs/module-Path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/module-Path.html -------------------------------------------------------------------------------- /docs/module-SVGLoader-SVGLoader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/module-SVGLoader-SVGLoader.html -------------------------------------------------------------------------------- /docs/module-SVGLoader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/module-SVGLoader.html -------------------------------------------------------------------------------- /docs/module-World-World.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/module-World-World.html -------------------------------------------------------------------------------- /docs/module-World.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/module-World.html -------------------------------------------------------------------------------- /docs/scripts/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/scripts/collapse.js -------------------------------------------------------------------------------- /docs/scripts/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/scripts/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /docs/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/scripts/linenumber.js -------------------------------------------------------------------------------- /docs/scripts/prettify/Apache-License-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/scripts/prettify/Apache-License-2.0.txt -------------------------------------------------------------------------------- /docs/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /docs/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /docs/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/scripts/search.js -------------------------------------------------------------------------------- /docs/styles/jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/styles/jsdoc.css -------------------------------------------------------------------------------- /docs/styles/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/docs/styles/prettify.css -------------------------------------------------------------------------------- /experiments/01 - single line/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/01 - single line/README.md -------------------------------------------------------------------------------- /experiments/01 - single line/dist/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/01 - single line/dist/app.min.js -------------------------------------------------------------------------------- /experiments/01 - single line/dist/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/01 - single line/dist/style.min.css -------------------------------------------------------------------------------- /experiments/01 - single line/images/01-growth-in-trace-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/01 - single line/images/01-growth-in-trace-mode.png -------------------------------------------------------------------------------- /experiments/01 - single line/images/01-growth-process-with-inverted-colors.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/01 - single line/images/01-growth-process-with-inverted-colors.gif -------------------------------------------------------------------------------- /experiments/01 - single line/images/01-growth-process.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/01 - single line/images/01-growth-process.gif -------------------------------------------------------------------------------- /experiments/01 - single line/images/01-inverted-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/01 - single line/images/01-inverted-colors.png -------------------------------------------------------------------------------- /experiments/01 - single line/images/01-line-after-growth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/01 - single line/images/01-line-after-growth.png -------------------------------------------------------------------------------- /experiments/01 - single line/images/01-starting-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/01 - single line/images/01-starting-point.png -------------------------------------------------------------------------------- /experiments/01 - single line/images/social-media-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/01 - single line/images/social-media-preview.png -------------------------------------------------------------------------------- /experiments/01 - single line/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/01 - single line/index.html -------------------------------------------------------------------------------- /experiments/01 - single line/js/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/01 - single line/js/Settings.js -------------------------------------------------------------------------------- /experiments/01 - single line/js/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/01 - single line/js/entry.js -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/README.md -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/dist/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/dist/app.min.js -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/dist/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/dist/style.min.css -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/images/02-circle-growth-debug-trace-mode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/images/02-circle-growth-debug-trace-mode.gif -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/images/02-circle-growth-inverted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/images/02-circle-growth-inverted.gif -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/images/02-circle-partial-growth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/images/02-circle-partial-growth.png -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/images/02-square-growth-filled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/images/02-square-growth-filled.gif -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/images/02-square-inverted-trace-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/images/02-square-inverted-trace-mode.png -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/images/02-square-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/images/02-square-inverted.png -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/images/02-starting-point-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/images/02-starting-point-triangle.png -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/images/02-triangle-growth-15s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/images/02-triangle-growth-15s.png -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/images/02-triangle-growth-5s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/images/02-triangle-growth-5s.png -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/images/02-triangle-growth-debug-mode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/images/02-triangle-growth-debug-mode.gif -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/images/02-triangle-growth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/images/02-triangle-growth.gif -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/images/02-triangle-trace-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/images/02-triangle-trace-mode.png -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/images/social-media-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/images/social-media-preview.png -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/index.html -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/js/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/js/Settings.js -------------------------------------------------------------------------------- /experiments/02 - simple closed shape/js/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/02 - simple closed shape/js/entry.js -------------------------------------------------------------------------------- /experiments/03 - multiple shapes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/03 - multiple shapes/README.md -------------------------------------------------------------------------------- /experiments/03 - multiple shapes/dist/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/03 - multiple shapes/dist/app.min.js -------------------------------------------------------------------------------- /experiments/03 - multiple shapes/dist/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/03 - multiple shapes/dist/style.min.css -------------------------------------------------------------------------------- /experiments/03 - multiple shapes/images/03-growth-after-30s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/03 - multiple shapes/images/03-growth-after-30s.png -------------------------------------------------------------------------------- /experiments/03 - multiple shapes/images/03-growth-after-5s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/03 - multiple shapes/images/03-growth-after-5s.png -------------------------------------------------------------------------------- /experiments/03 - multiple shapes/images/03-growth-inverted-with-colors.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/03 - multiple shapes/images/03-growth-inverted-with-colors.gif -------------------------------------------------------------------------------- /experiments/03 - multiple shapes/images/03-growth-normal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/03 - multiple shapes/images/03-growth-normal.gif -------------------------------------------------------------------------------- /experiments/03 - multiple shapes/images/03-inverted-colors-trace-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/03 - multiple shapes/images/03-inverted-colors-trace-mode.png -------------------------------------------------------------------------------- /experiments/03 - multiple shapes/images/03-inverted-with-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/03 - multiple shapes/images/03-inverted-with-colors.png -------------------------------------------------------------------------------- /experiments/03 - multiple shapes/images/03-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/03 - multiple shapes/images/03-inverted.png -------------------------------------------------------------------------------- /experiments/03 - multiple shapes/images/03-shapes-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/03 - multiple shapes/images/03-shapes-filled.png -------------------------------------------------------------------------------- /experiments/03 - multiple shapes/images/03-starting-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/03 - multiple shapes/images/03-starting-point.png -------------------------------------------------------------------------------- /experiments/03 - multiple shapes/images/social-media-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/03 - multiple shapes/images/social-media-preview.png -------------------------------------------------------------------------------- /experiments/03 - multiple shapes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/03 - multiple shapes/index.html -------------------------------------------------------------------------------- /experiments/03 - multiple shapes/js/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/03 - multiple shapes/js/Settings.js -------------------------------------------------------------------------------- /experiments/03 - multiple shapes/js/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/03 - multiple shapes/js/entry.js -------------------------------------------------------------------------------- /experiments/04 - SVG as input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/04 - SVG as input/README.md -------------------------------------------------------------------------------- /experiments/04 - SVG as input/dist/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/04 - SVG as input/dist/app.min.js -------------------------------------------------------------------------------- /experiments/04 - SVG as input/dist/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/04 - SVG as input/dist/style.min.css -------------------------------------------------------------------------------- /experiments/04 - SVG as input/images/04-hello-world-after-10s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/04 - SVG as input/images/04-hello-world-after-10s.png -------------------------------------------------------------------------------- /experiments/04 - SVG as input/images/04-hello-world-after-3s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/04 - SVG as input/images/04-hello-world-after-3s.png -------------------------------------------------------------------------------- /experiments/04 - SVG as input/images/04-hello-world-growth-process.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/04 - SVG as input/images/04-hello-world-growth-process.gif -------------------------------------------------------------------------------- /experiments/04 - SVG as input/images/04-hello-world-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/04 - SVG as input/images/04-hello-world-start.png -------------------------------------------------------------------------------- /experiments/04 - SVG as input/images/04-superformula-growth-process-inverted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/04 - SVG as input/images/04-superformula-growth-process-inverted.gif -------------------------------------------------------------------------------- /experiments/04 - SVG as input/images/social-media-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/04 - SVG as input/images/social-media-preview.png -------------------------------------------------------------------------------- /experiments/04 - SVG as input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/04 - SVG as input/index.html -------------------------------------------------------------------------------- /experiments/04 - SVG as input/js/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/04 - SVG as input/js/Settings.js -------------------------------------------------------------------------------- /experiments/04 - SVG as input/js/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/04 - SVG as input/js/entry.js -------------------------------------------------------------------------------- /experiments/04 - SVG as input/svg/differential-growth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/04 - SVG as input/svg/differential-growth.svg -------------------------------------------------------------------------------- /experiments/04 - SVG as input/svg/gnu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/04 - SVG as input/svg/gnu.svg -------------------------------------------------------------------------------- /experiments/04 - SVG as input/svg/hello-world-serif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/04 - SVG as input/svg/hello-world-serif.svg -------------------------------------------------------------------------------- /experiments/04 - SVG as input/svg/superformula.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/04 - SVG as input/svg/superformula.svg -------------------------------------------------------------------------------- /experiments/05 - line studies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/05 - line studies/README.md -------------------------------------------------------------------------------- /experiments/05 - line studies/dist/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/05 - line studies/dist/app.min.js -------------------------------------------------------------------------------- /experiments/05 - line studies/dist/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/05 - line studies/dist/style.min.css -------------------------------------------------------------------------------- /experiments/05 - line studies/images/01-hor-lines-growth-process.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/05 - line studies/images/01-hor-lines-growth-process.gif -------------------------------------------------------------------------------- /experiments/05 - line studies/images/02-vert-lines-trace-process.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/05 - line studies/images/02-vert-lines-trace-process.gif -------------------------------------------------------------------------------- /experiments/05 - line studies/images/03-opp-arcs-process.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/05 - line studies/images/03-opp-arcs-process.gif -------------------------------------------------------------------------------- /experiments/05 - line studies/images/04-circle-trace-process.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/05 - line studies/images/04-circle-trace-process.gif -------------------------------------------------------------------------------- /experiments/05 - line studies/images/05-circle-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/05 - line studies/images/05-circle-trace.png -------------------------------------------------------------------------------- /experiments/05 - line studies/images/06-hor-solid-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/05 - line studies/images/06-hor-solid-trace.png -------------------------------------------------------------------------------- /experiments/05 - line studies/images/07-vert-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/05 - line studies/images/07-vert-trace.png -------------------------------------------------------------------------------- /experiments/05 - line studies/images/08-opp-arcs-solid-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/05 - line studies/images/08-opp-arcs-solid-trace.png -------------------------------------------------------------------------------- /experiments/05 - line studies/images/social-media-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/05 - line studies/images/social-media-preview.png -------------------------------------------------------------------------------- /experiments/05 - line studies/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/05 - line studies/index.html -------------------------------------------------------------------------------- /experiments/05 - line studies/js/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/05 - line studies/js/Settings.js -------------------------------------------------------------------------------- /experiments/05 - line studies/js/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/05 - line studies/js/entry.js -------------------------------------------------------------------------------- /experiments/06 - shape studies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/06 - shape studies/README.md -------------------------------------------------------------------------------- /experiments/06 - shape studies/dist/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/06 - shape studies/dist/app.min.js -------------------------------------------------------------------------------- /experiments/06 - shape studies/dist/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/06 - shape studies/dist/style.min.css -------------------------------------------------------------------------------- /experiments/06 - shape studies/images/CIRCLES.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/06 - shape studies/images/CIRCLES.gif -------------------------------------------------------------------------------- /experiments/06 - shape studies/images/Phyllotaxis-inverted-process.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/06 - shape studies/images/Phyllotaxis-inverted-process.gif -------------------------------------------------------------------------------- /experiments/06 - shape studies/images/Phyllotaxis-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/06 - shape studies/images/Phyllotaxis-inverted.png -------------------------------------------------------------------------------- /experiments/06 - shape studies/images/Phyllotaxis-time-plot-process.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/06 - shape studies/images/Phyllotaxis-time-plot-process.gif -------------------------------------------------------------------------------- /experiments/06 - shape studies/images/Phyllotaxis-time-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/06 - shape studies/images/Phyllotaxis-time-plot.png -------------------------------------------------------------------------------- /experiments/06 - shape studies/images/SQUARES.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/06 - shape studies/images/SQUARES.gif -------------------------------------------------------------------------------- /experiments/06 - shape studies/images/TRIANGLES.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/06 - shape studies/images/TRIANGLES.gif -------------------------------------------------------------------------------- /experiments/06 - shape studies/images/phyllotaxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/06 - shape studies/images/phyllotaxis.png -------------------------------------------------------------------------------- /experiments/06 - shape studies/images/social-media-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/06 - shape studies/images/social-media-preview.png -------------------------------------------------------------------------------- /experiments/06 - shape studies/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/06 - shape studies/index.html -------------------------------------------------------------------------------- /experiments/06 - shape studies/js/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/06 - shape studies/js/Settings.js -------------------------------------------------------------------------------- /experiments/06 - shape studies/js/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/06 - shape studies/js/entry.js -------------------------------------------------------------------------------- /experiments/06 - shape studies/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/06 - shape studies/package-lock.json -------------------------------------------------------------------------------- /experiments/06 - shape studies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/06 - shape studies/package.json -------------------------------------------------------------------------------- /experiments/07 - bounds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/07 - bounds/README.md -------------------------------------------------------------------------------- /experiments/07 - bounds/dist/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/07 - bounds/dist/app.min.js -------------------------------------------------------------------------------- /experiments/07 - bounds/dist/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/07 - bounds/dist/style.min.css -------------------------------------------------------------------------------- /experiments/07 - bounds/images/circle-process.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/07 - bounds/images/circle-process.gif -------------------------------------------------------------------------------- /experiments/07 - bounds/images/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/07 - bounds/images/circle.png -------------------------------------------------------------------------------- /experiments/07 - bounds/images/maze-process.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/07 - bounds/images/maze-process.gif -------------------------------------------------------------------------------- /experiments/07 - bounds/images/multiple-shapes-pocess.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/07 - bounds/images/multiple-shapes-pocess.gif -------------------------------------------------------------------------------- /experiments/07 - bounds/images/social-media-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/07 - bounds/images/social-media-preview.png -------------------------------------------------------------------------------- /experiments/07 - bounds/images/square-process.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/07 - bounds/images/square-process.gif -------------------------------------------------------------------------------- /experiments/07 - bounds/images/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/07 - bounds/images/square.png -------------------------------------------------------------------------------- /experiments/07 - bounds/images/text-process.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/07 - bounds/images/text-process.gif -------------------------------------------------------------------------------- /experiments/07 - bounds/images/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/07 - bounds/images/text.png -------------------------------------------------------------------------------- /experiments/07 - bounds/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/07 - bounds/index.html -------------------------------------------------------------------------------- /experiments/07 - bounds/js/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/07 - bounds/js/Settings.js -------------------------------------------------------------------------------- /experiments/07 - bounds/js/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/07 - bounds/js/entry.js -------------------------------------------------------------------------------- /experiments/playground/README.md: -------------------------------------------------------------------------------- 1 | # 08 - playground -------------------------------------------------------------------------------- /experiments/playground/dist/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/playground/dist/app.min.js -------------------------------------------------------------------------------- /experiments/playground/dist/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/playground/dist/style.min.css -------------------------------------------------------------------------------- /experiments/playground/images/social-media-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/playground/images/social-media-preview.png -------------------------------------------------------------------------------- /experiments/playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/playground/index.html -------------------------------------------------------------------------------- /experiments/playground/js/ParametersPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/playground/js/ParametersPanel.js -------------------------------------------------------------------------------- /experiments/playground/js/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/playground/js/Settings.js -------------------------------------------------------------------------------- /experiments/playground/js/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/playground/js/entry.js -------------------------------------------------------------------------------- /experiments/playground/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/experiments/playground/style.css -------------------------------------------------------------------------------- /gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/gulpfile.babel.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/package.json -------------------------------------------------------------------------------- /social-media-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/social-media-preview.png -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/HEAD/style.css --------------------------------------------------------------------------------