Friday, 7 December 2012

*In Progress* My person...

Say hello to Bob :)

Original code:

// arms
stroke(13, 94, 64);
strokeWeight(10);
line(175, 260, 110, 150);
line(225, 260, 290, 150);

noStroke();

// body
fill(28, 5, 71);
triangle(200, 100, 110, 330, 280, 330);

// face
fill(255, 255, 70);
ellipse(200, 100, 150, 150);

// eyes
fill(255, 255, 255);
ellipse(170, 70, 30, 10);
ellipse(230, 70, 30, 10);

// eyeballs
fill(0, 0, 0);
ellipse(170, 70, 10, 10);
ellipse(230, 70, 10, 10);

What it looks like:
What I aim to do next:
  • Add more facial features
  • Add legs
  • Add some animations
  • Add some user interaction

No comments:

Post a Comment