comment déplacer une ellipse le long de l'axe x en javascript
let x = 10;
function draw(){
background(200);
ellipse(x,200,30,30);
x=x+2;
}
Long Lyrebird
let x = 10;
function draw(){
background(200);
ellipse(x,200,30,30);
x=x+2;
}