xxxxxxxxxx
23
let x = [];
let y = [];
function setup() {
createCanvas(420, 420);
noLoop();
for (let i = 0; i < 33; i++) {
x.push(random(width * .05, width * .95))
y.push(random(height * .05, height * .95))
}
}
function draw() {
background(220);
textSize(8);
for (let i = 1; i < 32; i++) {
text(i, x[i], y[i]);
}
}
function mousePressed() {
save();
}