Sarah Ransom-Self Portrait

sketch

//Sarah Ransom
//Section C 
//sransom@andrew.cmu.edu
//Self Portrait


function setup() {
    createCanvas(600, 600);
    background(255,204,150);
}

function draw() {
	noStroke();
	fill("brown");
	ellipse(200,280,60,300); //ponytail in the background

	noStroke();
	fill(255, 240, 173);
	ellipse(200,250,200,220); //face
	
	noStroke();
	fill("brown");
	arc(200, 230, 200, 180, PI, TWO_PI, OPEN); //bangs

	noStroke();
	fill("brown");
	ellipse(200,140,50,50); //"ponytail bump"

	noStroke();
	fill('#222222');
	ellipse(160,250,20,30); // left eye

	noStroke();
	fill('#222222');
	ellipse(240,250,20,30); // right eye

	noStroke();
	fill("red");
	arc(200,280,30,40,0,PI); // nose

	noFill();
	stroke(0);
	strokeWeight(3);
	arc(210,320,30,10,0,HALF_PI); //mouth

	noFill();
	stroke(0);
	strokeWeight(2);
	arc(160,265,20,7,0,PI);

	noFill();
	stroke(0);
	strokeWeight(2);
	arc(240,265,20,7,0,PI);


}

 

This portrait went in a lot of different directions before I settled on the simplest idea. I tried to make it look like I had a ponytail in the background without going for a side angle but I’m not totally happy with how it looks. Finally, I gave myself a red nose and eye bags because I have really bad year-round allergies and I thought it would be a funny/honest depiction of me on a normal day.

Leave a Reply