xxxxxxxxxx
17
function setup() {
createCanvas(700, 700);
background(0);
fill(0);
let yPos = 0;
let xPos = 0;
function draw(){
ellipse(xPos,yPos, 20, 20);
fill(255);
for (yPos = 30; yPos < height; yPos=yPos + 40) {
for (xPos = 30; xPos<width; xPos=xPos + 40) {
}
}
}
}