xxxxxxxxxx
//Main Fucntions----------------------------
function setup() {
createCanvas(350, 600);
background(20, 10, 61);
}
function draw() {
for (var x = 20; x < width; x += 100) {
for (var y = 20; y < height; y += 100) {
noStroke();
fill(255, 204, 0);
arc(x, y, 30, 30, -0.7, PI + QUARTER_PI);
fill(0);
noStroke();
fill(0);
ellipse(x-10, y, 7, 5);
}
}
}
//Interactive Fuctions----------------------
function mousePressed() {
}
function keyPressed() {
}