(Created page with "PFont arial; void setup() { size(600,600); arial=createFont("Arial", 16,true); } void draw() { background(0,0,0 ); smooth(); ellipse(100, 400, 150, 150 ); textFont(arial,16...") |
(No difference)
|
Revision as of 13:45, 27 October 2012
PFont arial; void setup() {
size(600,600); arial=createFont("Arial", 16,true);
}
void draw()
{ background(0,0,0 ); smooth(); ellipse(100, 400, 150, 150 ); textFont(arial,16); text ("Punktpunktpunkt",200,400);
}