Motion Class 02!
* Look at examples from Marius Watz
* Look at motion homework projects
* Go over Example code
* In class work / help / debugging
* Give homework assignment
(Todays theme and background .gif are from Kanye's famous
NBC Katrina Relief Broadcast).
We will again be going through examples based on Zach's Making Things Move workshop. These examples use LINE_STRIP which throws an error in newer versions of Processing. If you get an error related to LINE_STRIP make the following changes. Change:
beginShape(LINE_STRIP)
to:
noFill();
beginShape();







