xxxxxxxxxx
let x;
let y;
function setup() {
createCanvas(windowWidth, windowHeight);
x = width / 2;
y = height / 2;
}
function draw() {
background(100, 200, 100);
circle(x, y, 300);
textSize(100);
text("Paris", x, y);
}
function mousePressed() {
alert("To do – switch to view: Seoul");
}