xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
frameRate( 8);
}
function draw() {
background (random(100));
for(i=10; i<height; i+=30)
{
for(j=10; j<width; j+=30)
{
r=random(50)
fill(random(255));
ellipse(j, i, r, r);
}
}
//push()
stroke(255)
fill (255, 0, 10)
ellipse(mouseX, mouseY, random(100,120) , random(100,160));
//pop();
}