// COMP1405/1005 - Day 07 // mouse coordinates and // basic timer // mjh-2013 // variables int x,y; // initialize void setup(){ size(600,400); background(240,240,1); fill(2,1,2); textSize(50); } // body of program void draw(){ background(250,250,2); fill(0,0,0,0); rect(75,100,325,150); fill(0); text( "(" + mouseX + "," + mouseY + ")", 100,200); text(0.1*(millis()/100),20,height-10); }