removing old nature of code examples before adding new ones

This commit is contained in:
shiffman
2012-12-11 20:01:56 +00:00
parent e3aff605a8
commit 9b4891e419
541 changed files with 0 additions and 35009 deletions
@@ -1,22 +0,0 @@
// The Nature of Code
// http://www.shiffman.net/
void setup() {
size(400,200);
smooth();
}
void draw() {
background(255);
noFill();
stroke(0);
strokeWeight(2);
beginShape();
for (int i = 0; i < width; i++) {
float y = random(height);
vertex(i,y);
}
endShape();
noLoop();
}