//Philip Paniccia //Flock float x, y, w, h; int n; void setup(){ size(500,500); x=width/2; y=height/2; w=60; h=30; n= int( random(3,10) ); } void draw(){ background(0,0,200); x= x+2; if(x>width) x= 0; fill(0); bird( x,y,w,h); flock(n,x,y,w,h); } void bird( float x, float y, float w, float h ){ // triangle( x,y, x-w,y-h, x-w,y+h); } void flock(int n, float x, float y, float w, float h){ }