function setup() {
createCanvas(500, 500);
background(220, 0, 0);
ellipse(250, 250, 50, 50)
}
function draw() {
fill(150, 85, 100, 40)
stroke (230, 100, 100)
ellipse(mouseX, mouseY, 100,200)
}
[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);
ellipse(250, 250, 50, 50)
}
function draw() {
fill(150, 85, 100, 40)
stroke (230, 100, 100)
ellipse(mouseX, mouseY, 100,200)
}