Alyssa Seosankar – Prof. Higgins – HW 2.1 Part 3 – Due 02/06/13

//Alyssa Seosankar – Prof. Higgins – HW 2.1 Part 3 – Due 02/06/13

void setup(){
//Setting the window size
size(500, 400);
}
void draw() {
//Setting background color
background(0, 0, 0);
//Drawing head of creeper
fill(0, 0, 0);
stroke(249, 255, 9);
strokeWeight(8);
ellipse(390, mouseY, 200, 200);
//Drawing left eye of creeper
fill(255, 255, 255);
stroke(255, 9, 9);
strokeWeight(4);
ellipse(350, mouseY, 40, 40);
noFill();
noStroke();
fill(0, 0, 0);
ellipse(360, mouseY, 20, 20);
//Drawing right eye of creeper
fill(255, 255, 255);
stroke(255, 9, 9);
strokeWeight(4);
ellipse(440, mouseY, 40, 40);
noFill();
noStroke();
fill(0, 0, 0);
ellipse(450, mouseY, 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 *