void setup() { size(200, 200); background(255); } void draw() { background(255); int size = mouseX + mouseY; ellipse(100, 100, size, size); }