Cómo mover una elipse a lo largo del eje 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;
}