PFont fuente;
char letra;
void setup() {
size( displayWidth-300, displayHeight-200 );
smooth();
fuente=loadFont( "miLetra. vlw" );
textAlign(CENTER);
textFont(fuente, 250);
letra=' ';
}
void draw() {
background(0, 0, 20);
fill(255);
text(letra, width/2, height/2+50);
}
void keyPressed() {
letra=key;
}