xxxxxxxxxx
21
function setup() {
createCanvas(400, 400);
background(230);
fill(0);
}
function draw(){}
function mouseClicked()
{
for (let yPos =10; yPos< height; yPos=yPos + 10) {
for (let xPos = 10;xPos<width; xPos=xPos +10) {
circle(xPos,yPos, random(1, 4));
}
}
}