xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(230);
frameRate(10);
}
function draw() {
background (240);
for(i=10; i<height; i+=30)
{
for(j=10; j<width; j+=30)
{
r=random(20)
noStroke;
fill((255));
ellipse(j, i, r, r);
}
ellipse(255,500,320);
ellipse(255,280,190);
fill(0);
rect(207,100,100,100)
ellipse(220,260,30);
ellipse(254,200,200,50);
ellipse(280,260,30);
ellipse(250,420,40);
ellipse(250,500,40);
ellipse(250,580,40);
fill(240,10,10);
ellipse(250,325,80,20)
fill(255,165,0)
ellipse(mouseX,mouseY,20,20)
}
}