This browser does not have a Java Plug-in. Get the latest Java Plug-in here.
int w=400;void setup(){size(w,w);colorMode(3);noStroke();rectMode(3);} void draw(){int[]t={hour()*9,minute()*4,second()*4};for(int i=0;i<3;i++){fill(t[i],w,w);rect(w/2,w/2+i*30,w/(i+.4),w/(i+.4));}}