xxxxxxxxxx
// Face design is from a Matt Pearson sketch at http://www.abandonedart.org
// The mouths are a bit wobbly, I think they are talking to each other.
// particle system, particles, PVector, ArrayList, array, frameCount, class
// No interaction
particleGenerator pg;
void setup() {
size(900, 325);
colorMode(HSB, 360, 100, 100, 100);
ellipseMode(RADIUS);
pg = new particleGenerator(-20, 50);
}
void draw() {
background(360);
pg.run();
stroke(0);
strokeWeight(2);
noFill();
rect(0, 0, width-1, height-1);
}