xxxxxxxxxx
13
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
let xPosition = width/2 + 20 * cos(frameCount/10);
let yPosition = height/2 + 20 * noise(frameCount/10);
circle(xPosition, yPosition, 50);
}