added large stage example

This commit is contained in:
codeanticode
2015-01-12 16:00:02 -05:00
parent 4b51ca2d89
commit 914d792e7c

View File

@@ -0,0 +1,13 @@
import processing.lwjgl.*;
void setup() {
size(4000, 2000, LWJGL.P3D);
}
void draw() {
background(255, 0, 0);
line(0, 0, width, height);
line(0, height, width, 0);
println(mouseX, mouseY);
ellipse(mouseX, mouseY, 50, 50);
}