Description
This page is generated from the Processing project folder at /2016/ASSIGNMENTS/A-05 Programming in Processing/assignment_05_mission_03/assignment_05_mission_03.pde.
Archive
No companion assets were found in this sketch folder.
void setup() {
size (300,400);
background (#AAEBF7);
}
void draw() {
strokeWeight(3);
// Head
fill(#FF820D);
stroke(#C46710);
ellipse(150,200,100,100);
// Eyes
// Left Eye (Green)
fill(#);
stroke(#);
ellipse(130,185,25,25);
// Right Eye (Blue)
fill(#);
stroke(#);
ellipse(170,185,25,25);
// Nose
fill(#FF0307);
stroke(#D30206);
rect(145,200,10,10);
// Mouth
fill(#363434);
stroke(#);
ellipse(150,230,40,15);
} This page is generated from the Processing project folder at /2016/ASSIGNMENTS/A-05 Programming in Processing/assignment_05_mission_03/assignment_05_mission_03.pde.
No companion assets were found in this sketch folder.