Examples updates for 2.0

This commit is contained in:
Casey Reas
2011-07-17 06:50:01 +00:00
parent d996b52e66
commit 84dd359b1e
33 changed files with 305 additions and 280 deletions
@@ -6,14 +6,15 @@
* The four variables set the positions based on the value of 'd'.
*/
int d = 40;
int d = 70;
int p1 = d;
int p2 = p1+d;
int p3 = p2+d;
int p4 = p3+d;
size(200, 200);
size(640, 360);
background(0);
translate(140, 0);
// Draw gray box
stroke(153);