Skip to content

Instantly share code, notes, and snippets.

@sasaki-shigeo
Created January 6, 2019 08:01
Show Gist options
  • Save sasaki-shigeo/888a6652a701bf0857b02618c67e0c98 to your computer and use it in GitHub Desktop.
Save sasaki-shigeo/888a6652a701bf0857b02618c67e0c98 to your computer and use it in GitHub Desktop.
Digital Clock in Processing / デジタル時計
void setup() {
size(500, 100);
PFont font = createFont("Monospaced", 90);
textFont(font);
}
void draw() {
background(#AAAAAA);
fill(#000000);
text(String.format("%2d:%02d:%02d", hour(), minute(), second()), 40, 80);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment