rectMode(CENTER); var drawHead = function() { strokeWeight(6); fill(255, 50, 0); rect(200, 200, 200, 250, 60); fill(75, 175, 80); rect(200, 210, 200, 250, 60); fill(0); ellipse(150, 190, 20, 40); fill(255, 50, 0); ellipse(250, 190, 20, 40); fill(0); rect(200, 255, 80, 20, 60); fill(25, 110, 35); rect(200, 175, 180, 20, 60); rect(200, 275, 40, 20, 60); fill(69, 15, 69); rect(75, 230, 20, 40); rect(325, 230, 20, 40); strokeWeight(3); line(177, 166, 208, 125); line(132, 298, 147, 320, 125); fill(255); ellipse(65, 48, 120, 80); fill(0); textSize(20); text("I see you!", 25, 45); }; var draw = function() { background(50); drawHead(); };