Recitation 6: Animating an Interactive Poster

Recitation shape:   code: void setup() {   size(1024, 768); } void draw() {     println(mouseX, mouseY);   background(#9D0B0B);      fill(#DEA52B);   circle(59, 214, 40);   circle(240, 214, 40);   fill(#FCF0D6);   ellipse(150, 200, 160, 180); //face   fill(0);   arc(150, 185, 180, 180, PI, PI+PI, CHORD); //bangs   fill(255); // eyeframe   arc(150, 260, 170, 170, radians(220), radians(320), OPEN);   arc(150, 150, 170, 170, radians(40), … Continue reading Recitation 6: Animating an Interactive Poster