xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
frameRate(7);
}
function draw() {
background(100,5);
for(x=10; x<width; x+=25)
{
for(y=10; y<height; y+=25)
{
r=random(50)
fill (225, random(255), random(225), 75);
noStroke();
ellipse(x, y, r, r);
}
}
}