Alyssa Seosankar – Prof. Higgins – HW 1.2 Part 3 – Due 02/05/13

//Alyssa Seosankar – Prof. Higgins – HW 1.2 Part 3 – Due 02/05/13
//Setting the window size
size(500, 400);
//Setting background color
background(0, 0, 0);
//Drawing head of creeper
fill(0, 0, 0);
stroke(249, 255, 9);
strokeWeight(8);
ellipse(390, 400, 200, 200);
//Drawing left eye of creeper
fill(255, 255, 255);
stroke(255, 9, 9);
strokeWeight(4);
ellipse(350, 370, 40, 40);
noFill();
noStroke();
fill(0, 0, 0);
ellipse(360, 370, 20, 20);
//Drawing right eye of creeper
fill(255, 255, 255);
stroke(255, 9, 9);
strokeWeight(4);
ellipse(440, 370, 40, 40);
noFill();
noStroke();
fill(0, 0, 0);
ellipse(450, 370, 20, 20);

This entry was posted in Uncategorized. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *