xxxxxxxxxx
int numDrops = 200;
Drop[] allDrops = new Drop[numDrops];
void setup() {
size(400, 600);
for (int index = 0; index<numDrops; index++) {
allDrops[index] = new Drop();
}
noStroke();
}
void draw() {
background(100);
for (int index = 0; index<numDrops; index++) {
allDrops[index].move();
allDrops[index].display();
}
}