Cleaning examples for Beta launch

This commit is contained in:
Casey Reas
2012-08-30 22:12:12 +00:00
parent a230a54c17
commit a52c7aed8c
15 changed files with 29 additions and 154 deletions
@@ -27,6 +27,10 @@ void setup() {
void draw() {
background(0);
// This embedded loop skips over values in the arrays based on
// the spacer variable, so there are more values in the array
// than are drawn here. Change the value of the spacer variable
// to change the density of the points
for (int y = 0; y < height; y += spacer) {
for (int x = 0; x < width; x += spacer) {
stroke(distances[x][y]);