xxxxxxxxxx
let w = 55;
let h = 55;
let l= 47;
let e= 47;
function setup() {
createCanvas(874, 620);
background(0, );
}
function draw() {
//x= mouseX/10;
//y= mouseY/10;
let y = height / 2;
//for (let y = 0; y < 6; y++) {
for (let x = 0; x < 9; x++) {
push();
let sw = map(x, 0, 10, 20, 1);
strokeWeight(sw);
translate(50 + x * 95, 50 + y);
fill(206, 189, 76)
ellipse(0,0, w, h);
pop();
fill(79, 77, 73);
ellipse(40 + x * 95, 50 + y, l, e);
}
//}
/*
rect(125, height/2, w, h);
rect(200, height/2, w, h);
rect(275, height/2, w, h);
rect(350, height/2, w, h);
rect(425, height/2, w, h);
rect(500, height/2, w, h);
rect(575, height/2, w, h);
rect(650, height/2, w, h);
rect(725, height/2, w, h);
rect(800, height/2, w, h);
*/
}