Removing some examples

This commit is contained in:
Casey Reas
2011-09-06 03:51:23 +00:00
parent 5e0e9eaedc
commit 68c460be7d
30 changed files with 76 additions and 1215 deletions
+2 -3
View File
@@ -16,9 +16,8 @@ void setup() {
void draw() {
for (int i = 0; i < width; i++) {
float r = random(255);
float x = random(0, width);
stroke(r, 100);
line(i, 0, x, height);
stroke(r);
line(i, 0, i, height);
}
}