xxxxxxxxxx
16
function setup() {
createCanvas(600,600);
background(250, 250, 100);
}
function draw() {
//ellipse
noStroke();
fill(250, 100, 100, 50);
ellipse(mouseX, mouseY, 25, 25);
}
function mousePressed() {
background(250, 250, 100);
}