xxxxxxxxxx
16
function setup() {
createCanvas(400, 200);
background(255);
noStroke();
fill(150, 220, 255);
}
function draw() {
ellipse(mouseX, mouseY, 10, 10);
}
function mousePressed() {
fill(random(255), random(255), random(255));
}