int s = second(); // Values from 0 - 59 int s_max = 59; int m = minute(); // Values from 0 - 59 int m_max = 59; int h = hour(); // Values from 0 - 23 int h_max = 23; int d = day(); // Values from 1 - 31 int d_max = 31; int M = month(); // Values from 1 - 12 int M_max = 12; /*int y = year(); // Values from 2007 to int limit*/ void setup() { size(800,800); smooth(); } void draw() { background(204); points(); s = second(); m = minute(); h = hour(); d = day(); M = month(); /*y = year();*/ line(s*width/s_max, 0, m*width/m_max, height/4); ellipse(s*width/s_max, 0, 6,6); line(m*width/m_max, height/4, h*width/h_max, height/2); ellipse(m*width/m_max, height/4,6,6); line(h*width/h_max, height/2, d*width/d_max, 3*height/4); ellipse(h*width/h_max, height/2,6,6); line(d*width/d_max, 3*height/4, M*width/M_max, height); ellipse(d*width/d_max, 3*height/4,6,6); ellipse(M*width/M_max, height,6,6); } void points() { int i_s=0; int i_m=0; int i_h=0; int i_d=0; int i_M=0; for (i_s = 0; i_s