xxxxxxxxxx
let w = 75;
let h = 75;
let g = 50
function setup() {
createCanvas(874, 620);
background(0);
noFill()
}
function draw() {
for (let y = 0; y < 5; y++){
for (let i=0; i<6; i++){
push();
translate(i * g, y * g);
stroke(200,0,0)
strokeWeight(20)
let s = map(i, 0, 6, 15, 50);
strokeWeight(s)
ellipse(75+i*75, 75+y*75, w, h);
pop();
}
}
}