/*Jeremy Turner (JOT) Assignment A2-03 #200024742 Create an image different from A2-02, but using the same vertex data. ..*/ void setup () { size (666, 666); background (250, 3, 238); frameRate(1); //I wanted the random colour cycling to be slow enough to... //..contemplate each color contrast } void draw () { fill (random (255), random (255), random (255)); //I was wanting to find this colour cycling for quite some time now... smooth(); beginShape (TRIANGLE_STRIP); vertex (536, 111); vertex (88, 22); vertex (77, 33); vertex (99, 444); vertex (202, 55); vertex (33, 666); vertex (55, 108); vertex (66, 303); vertex (44, 404); vertex (17, 117); vertex (608, 642); vertex (440, 660); endShape(); //yes, I like optical illusions, I cannot help myself ;-) }