Monday, 25 August 2014

Spoon and Fork lab 1

void setup(){
  size(200, 200);
  background(200);
  fill(255);
  stroke(255);
  quad(100, 25, 25, 100, 100, 175, 175, 100);
  stroke(180);
  fill(180);
  rect(45, 70, 10, 70);
  rect(145, 70, 10, 70);
  quad(135, 55, 165, 55, 155, 72, 145, 72);
  ellipse(50, 50, 30, 45);
  rect(135, 30, 30, 25);
  stroke(190);
  fill(190);
  ellipse(50, 50, 26, 36);
  rect(47, 72, 6, 66);
  rect(147, 72, 6, 66);
  quad(138, 55, 162, 55, 153, 72, 147, 72);
  rect(138, 32, 3, 25);
  rect(145, 32, 3, 25);
  rect(152, 32, 3, 25);
  rect(159, 32, 3, 25);
}

No comments:

Post a Comment