xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
frameRate(30);
}
function draw() {
background (150);
for(y=0; y<height; y+=30)
{
for(x=0; x<width; x+=30)
{
r = random(7)
fill(random(80));
ellipse(x, y, r, r);
stroke(255,255, 255);
rect(noise(millis())*width, noise(millis()-1)*height, 10, 10);
}
}
}