void setup(){
size(200,100);
background(#000000);
}
void loop(){
quickText("Don't worry about it.", 12, 60);
}
//carry this where ever you go
void quickText(String theText, int x, int y){
hint(SMOOTH_IMAGES);
setFont(loadFont("Univers45.vlw.gz"), 25);
text(theText, x,y );
}
|