xxxxxxxxxx
let lineX = 100;
let circleX;
let circleY;
let circleW = 80;
function setup() {
createCanvas(windowWidth, windowHeight);
circleX = width/2;
circleY = height/2;
}
function draw() {
background(0);
ellipse(circleX, circleY, circleW, circleW);
}