xxxxxxxxxx
24
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(220, 10, 120);
centerX = width / 2;
centerY = height / 2;
reflectX = width - mouseX;
reflectY = height - mouseY;
distX = abs(mouseX - centerX);
distY = abs(mouseY - centerY);
maxDiam = width / 2;
diamX = maxDiam - distX;
diamY = maxDiam - distY;
fill(255);
ellipse(reflectX, reflectY, diamX, diamY);
ellipse(mouseX, mouseY, diamX, diamY);
}