Added updated examples from branch

This commit is contained in:
codeanticode
2012-05-09 23:58:30 +00:00
parent 9f847df04c
commit a586b8f0ae
109 changed files with 19979 additions and 0 deletions
@@ -0,0 +1,17 @@
import processing.opengl.*;
public void setup() {
size(800, 600, OPENGL);
orientation(LANDSCAPE);
fill(0);
}
public void draw() {
background(255);
for (int i = 0; i < 1000; i++) {
float x = random(width);
float y = random(height);
text("HELLO", x, y);
}
if (frameCount % 10 == 0) println(frameRate);
}