printArray() added to type examples

This commit is contained in:
REAS
2013-10-26 10:16:12 -07:00
parent 15156353e8
commit c6b9f16c42
2 changed files with 2 additions and 2 deletions
@@ -12,7 +12,7 @@ void setup() {
background(0);
// Create the font
println(PFont.list());
printArray(PFont.list());
f = createFont("Georgia", 24);
textFont(f);
textAlign(CENTER, CENTER);
@@ -12,7 +12,7 @@ void setup() {
size(640, 360);
// Create the font
println(PFont.list());
printArray(PFont.list());
f = createFont("Georgia", 24);
textFont(f);
}