Update to latest JOGL

This commit is contained in:
codeanticode
2012-03-19 13:52:09 +00:00
parent 355a49d9d1
commit ccb0cbe615
21 changed files with 1829 additions and 1581 deletions
@@ -0,0 +1,14 @@
void setup() {
size(400, 400, P3D);
noLoop();
}
void draw() {
background(255, 0, 0);
ellipse(mouseX, mouseY, 100, 50);
println("draw");
}
void keyPressed() {
redraw();
}