Project-01-Face

janet-portrait

//Janet Lee
//Section C
//janetl2@andrew.cmu.edu
//Self Portrait




function setup() {
  createCanvas (600,600);
  background ("beige");


}

function draw() {
  noStroke()
  //hair
  fill ("gold");
  ellipse (300,300,490,550);
  //head
  fill (255,214,160);
  ellipse (300,250,400);
  //left eye
  fill(0);
  ellipse (200,300,50);
  //right eye
  fill(0);
  ellipse (400,300,50);
  //bangs
 push();
  fill ("gold");
  rotate (75);
  ellipse (150,250,400,210);
  pop();

  //right eyebrow
  fill(0);
  stroke (0);
  strokeWeight (3);
  ellipse(410,250,60,10);

  //mouth
  noFill();
  stroke (0);
  strokeWeight(3);
  arc(300,380,30,10,0,PI);





}

Leave a Reply