xxxxxxxxxx
23
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
let m = minute();
let h = hour();
let s = second();
text(h, 5, 50);
text(":", 20, 50);
text(m, 25, 50);
text(":", 40, 50);
text(s, 45, 50);
//circles represent h:m:s
ellipse(100,100, h,h);
ellipse(150,150, m,m);
ellipse(200,200, s,s);
}