//Example of a basic function to draw an elf void santaHead() { smooth(); ellipseMode(CENTER); rectMode(CORNERS); //santa head fill(#F5DEA6); ellipse(50,65,50,50); //santa hat fill(0,255,0); triangle(50,10,25,45,75,45); fill(255); rect(25,45,75,52); ellipse(50,10,10,10); //santa eyes fill(0); ellipse(40,60,10,10); ellipse(60,60,10,10); //santa mouth line(40,78,60,78); } void setup() { size(200,200); background(200); } void draw() { santaHead(); }