xxxxxxxxxx
21
let num = 8;
let w = 15;
let h = 15;
function setup() {
createCanvas(800, 800);
frameRate(10);
}
function draw() {
background(19,19,19);
for (let y = h; y < height/1.4 ; y = y + height/num) {
for (let x = w; x <width; x = x + width/num+28.5) {
fill(255,255,102,random(300));
noStroke();
ellipse(x, y, w, h);
}
}}