xxxxxxxxxx
15
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw(){
background('black')
let v = createVector(width / 2, height / 2);
let diameter = 100;
circle(v.x,v.y,diameter);
//console.log(diameter)
}