├── .gitignore ├── 01-lines-tiled ├── README.md ├── index.html ├── lines-tiled.png ├── package-lock.json ├── package.json ├── sandbox.config.json └── sketch.js ├── 02-lines-tiled ├── README.md ├── index.html ├── lines-tiled-2.png ├── package-lock.json ├── package.json ├── sandbox.config.json └── sketch.js ├── 03-lines-displaced ├── README.md ├── index.html ├── lines-displaced.png ├── package-lock.json ├── package.json ├── sandbox.config.json └── sketch.js ├── 04-curves-tiled ├── README.md ├── curves-tiled.png ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── sketch.js ├── 05-lines-displaced-curved ├── README.md ├── index.html ├── lines-displaced-curved.png ├── package-lock.json ├── package.json ├── sandbox.config.json └── sketch.js ├── 06-lines-displaced-curved ├── README.md ├── index.html ├── lines-displaced-curved-2.png ├── package-lock.json ├── package.json ├── sandbox.config.json └── sketch.js ├── 07-curve-repeated ├── README.md ├── curve-repeated.png ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── sketch.js ├── 09-shapes-tiled ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json ├── shapes-tiled.png └── sketch.js ├── 10-squares-displaced ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json ├── sketch.js └── squares-displaced.png ├── 11-circle-displaced-repeated ├── README.md ├── circle-displaced-repeated.png ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json ├── scratch │ ├── package-lock.json │ ├── package.json │ └── sketch.js └── sketch.js ├── 12-squares-recursive ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json ├── sketch.js └── squares-recursive.png ├── 13-triangle-recursive ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json ├── sketch.js └── triangle-recursive.png ├── 14-branches-circular ├── README.md ├── branches-circular.png ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── sketch.js ├── 15-shapes-tiled-colors ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json ├── shapes-tiled-colors.png └── sketch.js ├── 16-braids ├── README.md ├── braids.png ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json ├── scratch │ ├── package-lock.json │ ├── package.json │ └── sketch.js └── sketch.js └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .cache/ 4 | /tmp/ 5 | -------------------------------------------------------------------------------- /01-lines-tiled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/01-lines-tiled/README.md -------------------------------------------------------------------------------- /01-lines-tiled/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/01-lines-tiled/index.html -------------------------------------------------------------------------------- /01-lines-tiled/lines-tiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/01-lines-tiled/lines-tiled.png -------------------------------------------------------------------------------- /01-lines-tiled/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/01-lines-tiled/package-lock.json -------------------------------------------------------------------------------- /01-lines-tiled/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/01-lines-tiled/package.json -------------------------------------------------------------------------------- /01-lines-tiled/sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "parcel" 3 | } 4 | -------------------------------------------------------------------------------- /01-lines-tiled/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/01-lines-tiled/sketch.js -------------------------------------------------------------------------------- /02-lines-tiled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/02-lines-tiled/README.md -------------------------------------------------------------------------------- /02-lines-tiled/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/02-lines-tiled/index.html -------------------------------------------------------------------------------- /02-lines-tiled/lines-tiled-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/02-lines-tiled/lines-tiled-2.png -------------------------------------------------------------------------------- /02-lines-tiled/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/02-lines-tiled/package-lock.json -------------------------------------------------------------------------------- /02-lines-tiled/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/02-lines-tiled/package.json -------------------------------------------------------------------------------- /02-lines-tiled/sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "parcel" 3 | } 4 | -------------------------------------------------------------------------------- /02-lines-tiled/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/02-lines-tiled/sketch.js -------------------------------------------------------------------------------- /03-lines-displaced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/03-lines-displaced/README.md -------------------------------------------------------------------------------- /03-lines-displaced/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/03-lines-displaced/index.html -------------------------------------------------------------------------------- /03-lines-displaced/lines-displaced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/03-lines-displaced/lines-displaced.png -------------------------------------------------------------------------------- /03-lines-displaced/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/03-lines-displaced/package-lock.json -------------------------------------------------------------------------------- /03-lines-displaced/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/03-lines-displaced/package.json -------------------------------------------------------------------------------- /03-lines-displaced/sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "parcel" 3 | } 4 | -------------------------------------------------------------------------------- /03-lines-displaced/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/03-lines-displaced/sketch.js -------------------------------------------------------------------------------- /04-curves-tiled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/04-curves-tiled/README.md -------------------------------------------------------------------------------- /04-curves-tiled/curves-tiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/04-curves-tiled/curves-tiled.png -------------------------------------------------------------------------------- /04-curves-tiled/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/04-curves-tiled/index.html -------------------------------------------------------------------------------- /04-curves-tiled/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/04-curves-tiled/package-lock.json -------------------------------------------------------------------------------- /04-curves-tiled/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/04-curves-tiled/package.json -------------------------------------------------------------------------------- /04-curves-tiled/sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "parcel" 3 | } 4 | -------------------------------------------------------------------------------- /04-curves-tiled/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/04-curves-tiled/sketch.js -------------------------------------------------------------------------------- /05-lines-displaced-curved/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/05-lines-displaced-curved/README.md -------------------------------------------------------------------------------- /05-lines-displaced-curved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/05-lines-displaced-curved/index.html -------------------------------------------------------------------------------- /05-lines-displaced-curved/lines-displaced-curved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/05-lines-displaced-curved/lines-displaced-curved.png -------------------------------------------------------------------------------- /05-lines-displaced-curved/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/05-lines-displaced-curved/package-lock.json -------------------------------------------------------------------------------- /05-lines-displaced-curved/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/05-lines-displaced-curved/package.json -------------------------------------------------------------------------------- /05-lines-displaced-curved/sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "parcel" 3 | } 4 | -------------------------------------------------------------------------------- /05-lines-displaced-curved/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/05-lines-displaced-curved/sketch.js -------------------------------------------------------------------------------- /06-lines-displaced-curved/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/06-lines-displaced-curved/README.md -------------------------------------------------------------------------------- /06-lines-displaced-curved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/06-lines-displaced-curved/index.html -------------------------------------------------------------------------------- /06-lines-displaced-curved/lines-displaced-curved-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/06-lines-displaced-curved/lines-displaced-curved-2.png -------------------------------------------------------------------------------- /06-lines-displaced-curved/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/06-lines-displaced-curved/package-lock.json -------------------------------------------------------------------------------- /06-lines-displaced-curved/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/06-lines-displaced-curved/package.json -------------------------------------------------------------------------------- /06-lines-displaced-curved/sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "parcel" 3 | } 4 | -------------------------------------------------------------------------------- /06-lines-displaced-curved/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/06-lines-displaced-curved/sketch.js -------------------------------------------------------------------------------- /07-curve-repeated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/07-curve-repeated/README.md -------------------------------------------------------------------------------- /07-curve-repeated/curve-repeated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/07-curve-repeated/curve-repeated.png -------------------------------------------------------------------------------- /07-curve-repeated/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/07-curve-repeated/index.html -------------------------------------------------------------------------------- /07-curve-repeated/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/07-curve-repeated/package-lock.json -------------------------------------------------------------------------------- /07-curve-repeated/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/07-curve-repeated/package.json -------------------------------------------------------------------------------- /07-curve-repeated/sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "parcel" 3 | } 4 | -------------------------------------------------------------------------------- /07-curve-repeated/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/07-curve-repeated/sketch.js -------------------------------------------------------------------------------- /09-shapes-tiled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/09-shapes-tiled/README.md -------------------------------------------------------------------------------- /09-shapes-tiled/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/09-shapes-tiled/index.html -------------------------------------------------------------------------------- /09-shapes-tiled/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/09-shapes-tiled/package-lock.json -------------------------------------------------------------------------------- /09-shapes-tiled/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/09-shapes-tiled/package.json -------------------------------------------------------------------------------- /09-shapes-tiled/sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "parcel" 3 | } 4 | -------------------------------------------------------------------------------- /09-shapes-tiled/shapes-tiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/09-shapes-tiled/shapes-tiled.png -------------------------------------------------------------------------------- /09-shapes-tiled/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/09-shapes-tiled/sketch.js -------------------------------------------------------------------------------- /10-squares-displaced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/10-squares-displaced/README.md -------------------------------------------------------------------------------- /10-squares-displaced/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/10-squares-displaced/index.html -------------------------------------------------------------------------------- /10-squares-displaced/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/10-squares-displaced/package-lock.json -------------------------------------------------------------------------------- /10-squares-displaced/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/10-squares-displaced/package.json -------------------------------------------------------------------------------- /10-squares-displaced/sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "parcel" 3 | } 4 | -------------------------------------------------------------------------------- /10-squares-displaced/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/10-squares-displaced/sketch.js -------------------------------------------------------------------------------- /10-squares-displaced/squares-displaced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/10-squares-displaced/squares-displaced.png -------------------------------------------------------------------------------- /11-circle-displaced-repeated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/11-circle-displaced-repeated/README.md -------------------------------------------------------------------------------- /11-circle-displaced-repeated/circle-displaced-repeated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/11-circle-displaced-repeated/circle-displaced-repeated.png -------------------------------------------------------------------------------- /11-circle-displaced-repeated/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/11-circle-displaced-repeated/index.html -------------------------------------------------------------------------------- /11-circle-displaced-repeated/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/11-circle-displaced-repeated/package-lock.json -------------------------------------------------------------------------------- /11-circle-displaced-repeated/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/11-circle-displaced-repeated/package.json -------------------------------------------------------------------------------- /11-circle-displaced-repeated/sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "parcel" 3 | } 4 | -------------------------------------------------------------------------------- /11-circle-displaced-repeated/scratch/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/11-circle-displaced-repeated/scratch/package-lock.json -------------------------------------------------------------------------------- /11-circle-displaced-repeated/scratch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/11-circle-displaced-repeated/scratch/package.json -------------------------------------------------------------------------------- /11-circle-displaced-repeated/scratch/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/11-circle-displaced-repeated/scratch/sketch.js -------------------------------------------------------------------------------- /11-circle-displaced-repeated/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/11-circle-displaced-repeated/sketch.js -------------------------------------------------------------------------------- /12-squares-recursive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/12-squares-recursive/README.md -------------------------------------------------------------------------------- /12-squares-recursive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/12-squares-recursive/index.html -------------------------------------------------------------------------------- /12-squares-recursive/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/12-squares-recursive/package-lock.json -------------------------------------------------------------------------------- /12-squares-recursive/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/12-squares-recursive/package.json -------------------------------------------------------------------------------- /12-squares-recursive/sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "parcel" 3 | } 4 | -------------------------------------------------------------------------------- /12-squares-recursive/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/12-squares-recursive/sketch.js -------------------------------------------------------------------------------- /12-squares-recursive/squares-recursive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/12-squares-recursive/squares-recursive.png -------------------------------------------------------------------------------- /13-triangle-recursive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/13-triangle-recursive/README.md -------------------------------------------------------------------------------- /13-triangle-recursive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/13-triangle-recursive/index.html -------------------------------------------------------------------------------- /13-triangle-recursive/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/13-triangle-recursive/package-lock.json -------------------------------------------------------------------------------- /13-triangle-recursive/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/13-triangle-recursive/package.json -------------------------------------------------------------------------------- /13-triangle-recursive/sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "parcel" 3 | } 4 | -------------------------------------------------------------------------------- /13-triangle-recursive/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/13-triangle-recursive/sketch.js -------------------------------------------------------------------------------- /13-triangle-recursive/triangle-recursive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/13-triangle-recursive/triangle-recursive.png -------------------------------------------------------------------------------- /14-branches-circular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/14-branches-circular/README.md -------------------------------------------------------------------------------- /14-branches-circular/branches-circular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/14-branches-circular/branches-circular.png -------------------------------------------------------------------------------- /14-branches-circular/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/14-branches-circular/index.html -------------------------------------------------------------------------------- /14-branches-circular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/14-branches-circular/package-lock.json -------------------------------------------------------------------------------- /14-branches-circular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/14-branches-circular/package.json -------------------------------------------------------------------------------- /14-branches-circular/sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "parcel" 3 | } 4 | -------------------------------------------------------------------------------- /14-branches-circular/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/14-branches-circular/sketch.js -------------------------------------------------------------------------------- /15-shapes-tiled-colors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/15-shapes-tiled-colors/README.md -------------------------------------------------------------------------------- /15-shapes-tiled-colors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/15-shapes-tiled-colors/index.html -------------------------------------------------------------------------------- /15-shapes-tiled-colors/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/15-shapes-tiled-colors/package-lock.json -------------------------------------------------------------------------------- /15-shapes-tiled-colors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/15-shapes-tiled-colors/package.json -------------------------------------------------------------------------------- /15-shapes-tiled-colors/sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "parcel" 3 | } 4 | -------------------------------------------------------------------------------- /15-shapes-tiled-colors/shapes-tiled-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/15-shapes-tiled-colors/shapes-tiled-colors.png -------------------------------------------------------------------------------- /15-shapes-tiled-colors/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/15-shapes-tiled-colors/sketch.js -------------------------------------------------------------------------------- /16-braids/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/16-braids/README.md -------------------------------------------------------------------------------- /16-braids/braids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/16-braids/braids.png -------------------------------------------------------------------------------- /16-braids/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/16-braids/index.html -------------------------------------------------------------------------------- /16-braids/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/16-braids/package-lock.json -------------------------------------------------------------------------------- /16-braids/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/16-braids/package.json -------------------------------------------------------------------------------- /16-braids/sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "parcel" 3 | } 4 | -------------------------------------------------------------------------------- /16-braids/scratch/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/16-braids/scratch/package-lock.json -------------------------------------------------------------------------------- /16-braids/scratch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/16-braids/scratch/package.json -------------------------------------------------------------------------------- /16-braids/scratch/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/16-braids/scratch/sketch.js -------------------------------------------------------------------------------- /16-braids/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/16-braids/sketch.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhyfritz/generative-art-speedrun-examples/HEAD/README.md --------------------------------------------------------------------------------