Saturday, July 23, 2011

The simple face













That was the simple face i made this time.


void setup() {
  size(500, 500);
  background(255);
  smooth();
  stroke(0);
  strokeWeight(5);
  bezier(150, 180, 170, 270, 330, 270, 350, 180);
  bezier(265, 120, 270, 100, 280, 100, 285, 120);
  line(250, 140, 250, 245);
  line(135, 140, 210, 160);
  line(365, 140, 290, 160);
  line(135, 170, 210, 180);
  line(365, 170, 290, 180);
  line(135, 210, 210, 200);
  line(365, 210, 290, 200);

  noFill();
  ellipse(215, 100, 65, 80);
  ellipse(285, 100, 65, 80);
  ellipse(250, 170, 270, 260);
  fill(23, 132, 214);

  fill(198, 69, 64);
  ellipse(250, 140, 35, 35);
  fill(255, 255, 255);
  noStroke();
  ellipse(245, 135, 10, 10);
  fill(0);
  ellipse(230, 115, 20, 20);
}

No comments:

Post a Comment