xxxxxxxxxx
29
function setup() {
createCanvas(400, 400);
}
function draw() {
background(200,100,100);
fill(255,30,90)
for(var x = 20; x < 400; x+= 50)
{
for(var y = 20; y < 400; y+= 40)
{
loli(x,y)
}
}
}
function loli(x,y)
{
strokeWeight(5)
ellipse(x,y,20)
stroke(0)
strokeWeight(6)
rect(x,y+11,2,8)
}