Introduction
Welcome to the class! This first module is about getting acclimated to the class. What coding language / environment would you like to use? Suggested is p5.js but you are welcome to create your assignments with any language or framework you like.
Emoji Key
The following emoji key will hopefully help you navigate the material for each module.
- ๐ Video tutorial from Coding Train
- ๐ฅ Other video tutorial
- ๐ Reading
- ๐ป Code examples
- ๐จ Creative project references
Core Material
For each module, I will provide written and video tutorials on the topics. You can review whichever format suits you best. If the amount feels overwhelming, please reach out and we can help you narrow things down, and select a subset of the material to focus an exercise around.
Supplemental Material
For each module, I will provide a list of additional video tutorials and readings that you may draw on for further exploration. Itโs unlikely you would be able to consume everything in one week and if you are looking for guidance about what might fit with your learning style the most, please reach out.
More about noise
More about Random Walks
Code Examples
Assignment
Using the random walker as a model, develop a sketch that experiments with motion. Here are some ideas but you should feel free to develop your own.
- Use a random walker to โpaintโ colors.
- Try a walk in 3D, see Quantum Cloud for an example.
- Create a random walker with dynamic probabilities. For example, can you give it a 50% chance of moving in the direction of the mouse?
- Try implementing a self-avoiding walk. This one is really hard!
- Create a variation on the a Levy Flight.
- Create an array of
Walker
objects. Try adding a new object when you click the mouse.
- Use the random walker as a template to simulate some real-world โnaturalโ motion. Can you develop a set of rules for simulating that behavior? Ideas: nervous fly, hopping bunny, slithering snake, etc. Consider the challenge of using minimal visual design, i.e. black and white primitive shapes. Can you give your โbeingโ a personality? Can it express emotions โ happiness, sadness, fear?
Another way of thinking about the assignment is to apply the rules of motion to another medium of expression: sound, color, number, scaleโฆ
- Walk through RGB or HSB space (as opposed to XYZ)
- Walk through Pan, Amplitude, Pitch (as opposed to XYZ)
- Plot an โorchestraโ of instruments on an XY plane and move a melody through it like.
- Create a constantly morphing creature shape using
createShape()
and vertex()
. Play with how you change the number of vertices, anchor points.
Instructions
- Document your work on the web with a short blog post. Here are some guiding questions if you are not sure what to write about:
- What did you originally intend to create?
- Narrate the process of creating your sketch.
- What resources and examples did you draw on to create your sketch? What was most helpful / least helpful from this weekโs materials.
- What problems/discoveries did you encounter along the way?
- Submit a link to your blog post to the course Brightspace.
- Following the instructions in Brightspace, provide feedback on at least two other assigments.