function setup() {
createCanvas(200,200);
}
function draw() {
background(120, 150, 240);
fill(255,200,200);
noStroke();
ellipse(mouseX,mouseY, 50, 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(200,200);
}
function draw() {
background(120, 150, 240);
fill(255,200,200);
noStroke();
ellipse(mouseX,mouseY, 50, 50)
}