function setup() {
createCanvas(500, 500);
background(220, 0, 0);
}
function draw() {
background(220, 0, 0);
fill(255, 1500, 180);
stroke(100, 115, 215);
ellipse(mouseX, mouseY, 150, 50);
}
[OLD FALL 2018] 15-104 • Introduction to Computing for Creative Practice
Professor Roger B. Dannenberg • Fall 2018 • Introduction to Computing for Creative Practice
function setup() {
createCanvas(500, 500);
background(220, 0, 0);
}
function draw() {
background(220, 0, 0);
fill(255, 1500, 180);
stroke(100, 115, 215);
ellipse(mouseX, mouseY, 150, 50);
}