-
-
Notifications
You must be signed in to change notification settings - Fork 4
month_
villares edited this page May 24, 2020
·
4 revisions
void setup() {
PFont metaBold;
metaBold = loadFont("fonts/Meta-Bold.vlw.gz");
setFont(metaBold, 44);
noLoop();
}
void draw() {
int d = day(); // Values from 1 - 31
int m = month(); // Values from 1 - 12
int y = year(); // 2003, 2004, 2005, etc.
String s = String.valueOf(d);
text(s, 10, 28);
s = String.valueOf(m);
text(s, 10, 56);
s = String.valueOf(y);
text(s, 10, 84);
}
Processing se comunica com o relógio de seu computador. A função month()
retorna o dia de hoje como um valor entre 1 e 12.
month()
int
Web & Applicações
A referência de Processing está sob a licença Creative Commons BY-NC conforme indicado aqui. Esta Wiki-tradução é baseada na tradução e adaptação para o Português do Brasil do professor Luiz Ernesto Merkle