A Simple Self Portrait

Today, in the second day of Creative Computing, I finished a simple self portrait of my self. I’ll say that it remotely looks like me, if not at all.  I used the same tags that I had used in my “Pig Sketch,” and used a new tag, “arc,”  for the hair in the picture. the simple program, about a page long, iis listed here:

size(1000,1000);
fill(255, 230, 255);
smooth();
ellipse(500, 500, 450, 500);
fill(0,0,0);
arc(500, 450, 440, 430, PI, TWO_PI);
ellipse(400, 505, 60, 30);
ellipse(600, 505, 60, 30);
fill(255, 230, 255);
beginShape();
vertex(500, 490);
vertex(470, 590);
vertex(490, 590);
endShape();
fill(255,0,0);
arc(500, 650, 100, 100, TWO_PI, TWO_PI+PI);

size(1000,1000);
fill(255, 230, 255);smooth();ellipse(500, 500, 450, 500);

fill(0,0,0);

arc(500, 450, 440, 430, PI, TWO_PI);

ellipse(400, 505, 60, 30);

ellipse(600, 505, 60, 30);

fill(255, 230, 255);

beginShape();

vertex(500, 490);

vertex(470, 590);

vertex(490, 590);

endShape();

fill(255,0,0);

arc(500, 650, 100, 100, TWO_PI, TWO_PI+PI);