xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
frameRate(5)
}
function draw() {
background(100);
for(y=50; y<height;y+=100)
{
for(x=100; x<width; x+=100)
{
push();
r= random (50)
fill (0,0,random(60,200));
translate(x, y);
rotate (random());
ellipse( 0,0, r,r)
pop ();
}
}
}