Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. //Created By Jacob Wayne Risch, 20-1-2017
  2. int x = 60;
  3. int y = 390;
  4. int bodyHeight = 180;
  5. int neckHeight = 40;
  6. int radius = 45;
  7. int ny = y - bodyHeight - neckHeight - radius;
  8. size(170, 480);
  9. smooth();
  10. strokeWeight(2);
  11. background(204);
  12. ellipseMode(RADIUS);
  13.  
  14. stroke(102);
  15. line(x+2, y-bodyHeight, x+2, ny);
  16. line(x+12, y-bodyHeight, x+12, ny);
  17. line(x+22, y-bodyHeight, x+22, ny);
  18.  
  19. line(x+12, ny, x-18, ny-43);
  20. line(x+12, ny, x+42, ny-99);
  21. line(x+12, ny, x+78, ny+15);
  22.  
  23. noStroke();
  24. fill(102);
  25. ellipse(x, y-33, 33, 33);
  26. fill(0);
  27. rect(x-45, y-bodyHeight, 90, bodyHeight-33);
  28. fill(102);
  29. rect(x-45, y-bodyHeight+17, 90, 6);
  30.  
  31. fill(0);
  32. ellipse(x+12, ny, radius, radius);
  33. fill(255);
  34. ellipse(x+24, ny-6, 14, 14);
  35. fill(0);
  36. ellipse(x+24, ny-6, 3, 3);
  37. fill(153);
  38. ellipse(x, ny-8, 5, 5);
  39. ellipse(x+30, ny-26, 4, 4);
  40. ellipse(x+41, ny+6, 3, 3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement