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