xxxxxxxxxx
27
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
circleXPosition = windowWidth/2;
circleYPosition = windowHeight/2
circleDiameter = windowWidth/4;
background(220);
strokeWeight(15);
stroke(20, 255, 255);
noFill();
ellipse(circleXPosition, circleYPosition, circleDiameter);
var circle1 = {
x: 230,
y: 103,
diam: 20,
r: 0,
g: 20,
b: 200
};
}