Voici nos oeuvres d'art codées avec le langage p5.js, ainsi que le code.
function setup() {
createCanvas(750, 750);
}
function draw() {
background(220);
angleMode(DEGREES);
fill(0);
for (var j=0; j<31; j++){
for (var i=0; i<26; i++){
arc(20+(i*30),20+(j*30),30,30,60+(i*15)+(j*15),330+(i*15)+(j*15),CHORD);
}}}