xxxxxxxxxx
16
function setup() {
createCanvas(windowWidth, windowHeight);
}
let xPos = 0;
let xDir = 1;
function draw() {
background(220, 20, 120);
ellipse(xPos, height / 2, 50);
xPos = xPos + xDir;
if (xPos > width) {
xDir = -1;
}
}