/*Jeremy Turner (JOT) Assignment A2-01 #200024742 Using beginShape() and endShape(), create a composition with 5 or more vertices...*/ void setup () { size (600, 600); background (255, 3, 3); } void draw () { fill (18, 255, 3); beginShape(TRIANGLE_STRIP); //found this list of special strip shapes on the Processing site. vertex (536, 599); vertex (177, 188); vertex (307, 111); vertex (480, 117); vertex (500, 222); vertex (370, 460); vertex (99, 131); endShape(); }