/*Jeremy Turner #200024742. Assignment A1-06. Control the properties of 2 shapes with 2 variables.*/ int fun = 10; int happy = 13; void setup() { size(33,77); smooth(); background(33,33,33); } void draw() { ellipse(10,happy-2,13,fun+9); triangle(20,11,happy-6,11,22,fun+7); stroke(fun-happy); fill(happy,66,200); smooth(); }