Hallo Welt (Processing-Version)
Quellcode
size(300, 100);
background(255);
fill(150, 100, 200);
smooth();
ellipse(150, 50, 245, 90);
String info = "Hallo, Processing!";
fill(0);
PFont f = createFont("Verdana", 20, true);
textFont(f);
translate(width/2, height/2 + 7);
textAlign(CENTER);
text(info, 0, 0);
Literatur
Nach einer Idee aus dem Buch von Vicki Brown und Chris Nandor Macperl: Power and Ease, Sunnyvale, CA (Prime Time Freeware) 1985, Seiten 204 - 206.
Sie sind hier: Start → Programmierung → Creative Coding → Processing → halloprocessing.txt