https://github.com/zavalit/intro2creativecoding
Slides for "Introduction to Creative Coding" course
https://github.com/zavalit/intro2creativecoding
Last synced: 5 months ago
JSON representation
Slides for "Introduction to Creative Coding" course
- Host: GitHub
- URL: https://github.com/zavalit/intro2creativecoding
- Owner: zavalit
- Created: 2021-05-28T18:04:03.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-16T16:53:51.000Z (over 4 years ago)
- Last Synced: 2025-05-15T16:18:53.630Z (9 months ago)
- Language: JavaScript
- Size: 237 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# intro2creativecoding
Slides for ["Introduction to Creative Coding"](http://creative-coding.yoga/intro) course.
## try it out
### how to
All you need is just
* install dependcies with `yarn` command
* and afterwards let it run with `yarn dev`
* open in browser http://localhost:8080/
### good to know
There are 2 slides you probably would like to play with:
- in `src/scripts/color.js` to play with the way the color in `1. Color Basics` slide has been rendered
- in `src/scripts/pattern.js` to experiment with pattern in `2. Iterative Patterns` slide
#### and just for convenience
If you want to work/hack on a specific slide, go to `src/scripts/navigation.js` and change the `active_slide` so you get this slide loaded first, for example:
- for `1. Color Basic` slide `active_slide: 0` to `active_slide: 1`,
- for `2. Iterative Patterns` set `active_slide: 2`
- and so on.