xxxxxxxxxx
let w = 70;
let h = 70
let r = 50
let s = 50
let a = 55
let b = 55
function setup() {
createCanvas(874, 620);
background(150);
ellipseMode(CENTER);
}
function draw() {
background(150);
//Weißer Kreis
for (let x = 0; x < 11; x += 1) {
ellipse(50 + x * 77, height / 2, w, h);
}
for (let y = 1; y < 6; y += 1) {
for (let x = 0; x < 11; x += 1) {
//ellipse(50 + x * 77, 50 + y * 77, w, h);
}
fill(150);
noStroke();
for (let y = 1; y < 6; y += 1) {
for (let x = 0; x < 20; x += 1) {
//ellipse(50 + x * 90, 50 + y * 77, a, b);
}
fill(150);
noStroke();
}
//Ausschhnitt
for (let x = 0; x < 10; x += 1) {
ellipse(50 + x * 100, height / 2, a, b);
}
fill(255);
}
}