xxxxxxxxxx
21
function setup() {
createCanvas(400, 400);
}
function draw() {
background(255);
noStroke();
// Rouge
fill(255, 0, 0);
ellipse(20, 20, 16, 16);
// Rouge foncé
fill(127, 0, 0);
ellipse(40, 20, 16, 16);
// Rouge
fill(255, 200, 200);
ellipse(60, 20, 16, 16);
}