Here is where an assignment would be if it were due today. Since it's the first day of class, we won't expect anything here. Take a look at week 2 for your assignment.
Chapters 1 and 2. Pages 1-17.
by Lauren McCarthy, Casey Reas, Ben Fry
function setup() { createCanvas(400, 400); background(220); } function draw() { fill(100, 150, 255); ellipse(mouseX, mouseY, 100, 100); text(mouseX + ", " + mouseY, mouseX, mouseY); console.log(mouseX + ", " + mouseY); }