Table of Contents

Day 3 - Wednesday

Activities

Class Assignments

  1. Homework - Please finish the assignments from yesterday (30 minutes)
  2. Sign up for Open Processing - go to openprocessing.org and sign up
    1. PLEASE put your Processing portfolio link for YOUR profile onto your Lofter page “CONNECT” (where you put your github link)
  3. Processing Practice - Assignment
  4. Processing Project - Use processing to create your own creature
  5. 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!!!!
  6. More Github - You can store your processing projects directly there and run them with Processing.js - Read: http://processingjs.org/articles/jsQuickStart.html
  7. Finish Certificate Information Registration - Finish the following form http://www.wenjuan.com/s/uYV7Nbj/

Homework

Note: From now on ALL game reviews must address Ludus, Paida, and Narrative.

Teams

Same Teams as yesterday.

TA: Jeffrey

TA: Kevin

TA: Yinan


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;
  
}