xxxxxxxxxx
function setup() {
// 描画領域のセットアップ
createCanvas(600,600);
background(0);
noStroke();
fill(255);
const step = 20;
//楕円 二重ループ
for (let y = 0; y <=height; y +=step) {
for(let x = 0; x <= width; x += step) {
const size = random(0, 15);
fill(random(255));
ellipse(x, y,size,size);
}
}
}