/* Matt Martell IAT 800 - Dr. Christopher Shaw Due Oct. 6, 2008 A2-01 - Using beginShape() and endShape(), create a composition with five or more vertices. */ //Bowtie void setup() { size(200,200); smooth(); stroke(255,0,0); } void draw() { background(273); fill(225,25,25,75); beginShape(); vertex (50,50); vertex (100,75); vertex (150,50); vertex (150,100); vertex (100,80); vertex (50,100); endShape(CLOSE); }