Day 3 - Wednesday
Activities
Guest Speaker
Programming
Debate
Computer Graphics
Animations
Class Assignments
Homework - Please finish the assignments from yesterday (30 minutes)
Sign up for Open Processing - go to openprocessing.org and sign up
PLEASE put your Processing portfolio link for YOUR profile onto your Lofter page “CONNECT” (where you put your github link)
-
Processing Project - Use processing to create your own creature
Keep processing projects on Open Processing - Save your projects online so you can have them forever. http://openprocessing.org NEVERMIND, Open Processing is too slow. Use GITHUB!!!!
-
-
Homework
Blog Post: Processing. What is Processing? What did you work on in Processing? Past images for what you did. Link to the github.io website online so people can see the animation.
Improve your past work: Double check your work, and make sure your blog is complete. Make sure you have completed all projects. Finish anything you didn't get to do today. Improve anything that you can!
-
Note: From now on ALL game reviews must address Ludus, Paida, and Narrative.
Teams
Same Teams as yesterday.
TA: Jeffrey
Jeff, Peter
Billy, Frank
Cindy, Bran
TA: Kevin
Michael, Samuel
Hollis, KL
Evangeline, Kyle
TA: Yinan
Toby, Lisa
Wilson, Jack
Chris, Mike
int x = 0; // variable x - location
int dx = 1; // variable dx - speed
void setup () // setup function
{
size (500,500);
}
void draw () // draw function
{
fill(255,0,0);
ellipse(x,20,20,20);
fill(255,255,0);
ellipse(20,50,20,20);
fill(0,255,0);
ellipse(20,80,20,20);
if (x > 500)
{
dx = -dx;
}
x = x + dx;
}