Family Day update

This commit is contained in:
Ingy döt Net 2020-02-17 23:21:07 -08:00
parent aac6731f2c
commit 9ad63ea473
2442 changed files with 39761 additions and 8255 deletions

View file

@ -1,11 +1,13 @@
void setup() {
size(500,500,P3D);
background(200);
size(500, 500, P3D);
}
void draw() {
background(192);
translate(width/2, height/2);
// optional color and lighting style
stroke(200);
translate(250,250);
fill(255);
lights();
sphere(100);
// draw sphere
sphere(200);
}