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
@@ -0,0 +1,10 @@
void setup() {
size(400, 400, P3D);
frame.setResizable(true);
}
void draw() {
background(255, 0, 0);
ellipse(width/2, height/2, 100, 50);
}