let x = [4, 53, 233, 12, 300, 210]; // Krouiñ ul listenn 'x' let y = [320, 111, 23, 201, 50, 15]; // Krouiñ ul listenn 'y' function setup() { createCanvas(400, 400); fill(255, 0, 0); // Dibab al liv ruz evit pep elfenn treset } function draw() { background(255); // Livet e vez ar foñs e gwenn kann for (let i=0; iwidth) { x[i] -= width; } if (x[i]<0) { x[i] += width; } if (y[i]>height) { y[i] -= height; } if (y[i]<0) { y[i] += height; } } }