xxxxxxxxxx
22
var x, y;
var a, b, c;
function setup() {
createCanvas(800, 400);
background('#fae');
}
function draw() {
x = random(width);
y = random(height);
a = random(255);
b = random(255);
c = random(255);
fill(a, b, c, 100);
noStroke();
ellipse(x, y, 24, 24);
}
function mousePressed() {
background('#fae');
}