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.
All Chapters
by
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); }