xxxxxxxxxx
28
var i;
var j;
function setup() {
createCanvas(400, 400);
}
function draw() {
ellipseMode(CENTER);
background(20,45,65,150);
borderSize = 10
for (i = 0; i < 10; i++) {
for (j = 0; j < 10; j++) {
push();
fill(255,140,255,90)
ellipse(i/10*(width-75) + 50, j/10*(height-75) + 50, 30, 30);
fill("orange")
arc(i/10*(width-75) + 50, j/10*(height-75) + 53, 38, 10,PI/2,2*PI-(PI/2));
fill(0);
line(i/10*(width-75) + 50, j/10*(height-75) + 53, i/10*(width-75) + 50-19, j/10*(height-75) + 53)
fill(255);
pop();
ellipse(i/10*(width-75) + 52,j/10*(height-75) + 48,4,4);
ellipse(i/10*(width-75) + 40,j/10*(height-75) + 48,4,4);
}
}
}