Files
processing4/java/examples/OpenGL/Tests/ResizeTest/ResizeTest.pde
2012-07-20 20:24:58 +00:00

11 lines
152 B
Plaintext

void setup() {
size(400, 400, P3D);
frame.setResizable(true);
}
void draw() {
background(255, 0, 0);
ellipse(width/2, height/2, 100, 50);
}