xxxxxxxxxx
20
let oDiam = 80;
let mDiam = 40;
let x0 = 80;
let y0 = 135;
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(220, 10, 120);
fill(255);
stroke(0);
ellipse(x0, y0, oDiam);
ellipse(mouseX, mouseY, mDiam);
}