function setup() {
createCanvas(200, 200);
background(220, 10, 255);
}
function draw() {
background(220, 10, 255)
//inside color
fill(246, 20, 14)
//border color
stroke(0, 141, 194)
ellipse(mouseX, mouseY, 25, 25)
}
[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);
background(220, 10, 255);
}
function draw() {
background(220, 10, 255)
//inside color
fill(246, 20, 14)
//border color
stroke(0, 141, 194)
ellipse(mouseX, mouseY, 25, 25)
}