xxxxxxxxxx
43
var circ = {
h: 0,
w: 0,
r: 0
}
var col = {
r: 0,
g: 0,
b: 0,
a: 0,
}
var spot = {
x: 350,
y: 250
}
function setup() {
createCanvas(700, 500);
background(random(0,255), random(0,255), random(0,255));
}
function mousePressed() {
background(random(0, 255), col.a, col.b);
}
function draw() {
noStroke();
// spot.x += random(-5, 5);
// spot.y += random(-5, 5);
spot.x = random(0, width);
col.g = random(0, 255);
col.r = random(0, 255);
col.a = random(0, 255);
col.b = random(50, 175);
spot.y = random(0, height);
fill(color(col.r, col.g, col.b, col.a));
ellipse(spot.x, spot.y, circ.r, circ.r);
circ.r = random(0, 50);
}