homework 1.2 part 3

It looks like I have trouble uploading my picture but I will post the code so at least you know I did it.

//Thomas Wu-Prof.Calli Higgins-2/1/13-Assignment 1.2-pt3
size(200,200);//size change
background(18,113,10); //color change.
rectMode(CENTER);//rectangle center.
stroke(0);

//constructing Cyborg body.
fill(31,147,111);
rect(100,100,30,100);// inserting rectangle.

//constructing cyborg head.
fill(0,255,0);//ellipse color.
ellipse(100,70,60,60);//ellipse positioning.

//Constructing Cyborg eyes.
fill(209,17,11);//eye color.
ellipse(81,70,5,32);//first eye.
ellipse(119,70,20,32);//second eye.

//Constructing Cyborg legs.
stroke(0);//
stroke(9,34,108);//color for legs.
line(90,150,80,160);//first leg.
line(110,150,120,160);//second leg.

//constructing Cyborg arms.
stroke(0,255,0);
strokeWeight(2);
line(90,120,70,120);
line(110,120,130,120);

println(“bleep,bleep,bleep”);
println(“destruction to the ignoramous planet Earth”);

This entry was posted in Uncategorized. Bookmark the permalink.

Leave a Reply

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