This commit is contained in:
Casey Reas
2012-08-31 03:10:40 +00:00
parent df3adbe14c
commit 3494890075
40 changed files with 14453 additions and 8 deletions

View File

@@ -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();
}