Skip to content

Latest commit

 

History

History
95 lines (74 loc) · 2.64 KB

Dano-Tues-2013.md

File metadata and controls

95 lines (74 loc) · 2.64 KB

Daniel O'Sullivan Tuesday Section Info -- ICM 2013

Syllabus

  • Main Syllabus
  • General ICM Page: includes links to helpful resources, work from other sections, and instructions on how to upload your homework.

Mailing List

Homework

  • Homework Wiki: This is where you post links to your weekly assignments

Schedule / Contact

Requirements

  • You are required to attend all class meetings and submit all weekly assignments and a final project.

  • Grading (pass/fail) will be based on a combination of factors:

    • Attendance, participation in class discussion, and engagement in other students' projects (25%)
    • Quality of weekly assignments (50%)
    • Final Project (25%)
    • Personal progress; how much did you advance from your initial state in this class.

Class Dates

  • Week 1: September 3 Notes
  • Week 2: September 10

void setup(){ size(640,480); }

void draw(){ println(mouseX + ", " + mouseY); }


float dansXVariable ; float direction;

void setup() { size(640,480); dansXVariable = width/2; direction = -1; }

void draw() {

background(127); stroke(127); //
// float x = random(width); // float y = random(height); // float w = random(width); // float h = random(height);

ellipse(dansXVariable,100,20,20); dansXVariable = dansXVariable + direction; println("My dear friend Dan, here is your direction vairable:" + direction);

}

void mousePressed(){ direction = -direction;

}

void keyPressed(){ direction = -direction; }

  • Week 3: September 17
  • Week 4: September 24
  • Week 5: October 1
  • Week 6: October 8
  • Week 7: October 22
  • Week 8: October 29
  • Week 9: November 5
  • Week 10: November 12
  • Week 11: November 19
  • Week 12: November 26