// Dartmouth CS 2, Winter 2009, Chris Bailey-Kellogg // Notes 17 | Sketch 5 PImage grn; Ball[] balls; void setup() { size(320,184); // green-tiny is 80x46 grn = loadImage("green-tiny.jpg"); noStroke(); // Create a ball for each pixel balls = new Ball[grn.height*grn.width]; int i = 0; // which ball to add next for (int y=0; y