xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
noStroke()
}
function draw() {
colorMode(HSB,100)
var h = random(0,100)
fill(h,100,100)
if (mouseIsPressed) {
var size = random(-20,20);
var x = mouseX+random(-20,20);
var y = mouseY+random(-20,20);
ellipse(x,y, size, size)
}
function keyPressed (){
}
}