void setup() { size(400,400); smooth(); noStroke(); frameRate(30); background(0); } void draw() { // fade away fill(0,10); rect(0,0,width,height); // draw the mouse fill(255); ellipse(mouseX,mouseY,30,30); // mirror it ellipse(width-mouseX,mouseY,30,30); ellipse(mouseX,height-mouseY,30,30); ellipse(width-mouseX,height-mouseY,30,30); } // START NO NOTES // code used to capture screenshots void keyReleased() { if(key == '`' && !online) save("sketch.png"); }