size(200,200); //Sets size background(255); //Draws a white background smooth(); //Set ellipses and rectangles to center ellipseMode(CENTER); rectMode(CENTER); //Alien body stroke(0); fill(150); rect(100,100,20,100); //Alien head fill(255); ellipse(100,70,60,60); //Alien eyes fill(0); ellipse(81,70,16,32); ellipse(119,70,16,32); //Alien legs stroke(0); line(90,150,80,160); line(110,150,120,160);