void setup ( ) { size(700,500); background(200); smooth( ); frameRate(10); } void draw ( ) { owl(35,100); } void owl (int x, int y) { stroke(0); strokeWeight(70); line(x, -35+y, x, -65+y); // body noStroke(); fill(255); ellipse(-17.5+x, -65+y, 35, 35); // left eye dome ellipse( 17.5+x, -65+y, 35, 35); // right eye dome arc(0+x, -65+y, 70, 70, 0, PI); fill(0); ellipse(-14+x, -65+y, 8, 8); // left eye ellipse( 14+x, -65+y, 8, 8); // right eye quad(0+x, -58+y, 4+x, -51+y, x, -44+y, -4+x, -51+y); }