Guest User

Untitled

a guest
Oct 17th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. void setup() {
  2. // Set Window size
  3. size(500,500);
  4. }
  5.  
  6.  
  7. void draw() {
  8. background(#fdd4dc);
  9.  
  10. // draw rectangle
  11. noStroke();
  12. fill(#e84562);
  13. rect(217,106,53,56);
  14. rect(222,143,41,9);
  15.  
  16. fill(#b3cb31);
  17. rect(224,145,36,3);
  18. rect(225,163,35,7);
  19.  
  20. fill(#e84562);
  21. rect(192,170,99,105);
  22.  
  23. fill(#b3cb31);
  24. rect(203,275,80,13);
  25.  
  26. fill(#e84562);
  27. rect(216,289,16,11);
  28. rect(255,289,16,11);
  29.  
  30. fill(#e84562);
  31. rect(219,299,9,33);
  32. rect(259,299,9,33);
  33.  
  34. fill(#b3cb31);
  35. rect(214,331,19,19);
  36. rect(254,331,19,19);
  37.  
  38. fill(#b3cb31);
  39. rect(290,183,7,11);
  40.  
  41. fill(#e84562);
  42. rect(296,175,16,26);
  43.  
  44. fill(#e84562);
  45. rect(299,200,10,21);
  46.  
  47. fill(#e84562);
  48. rect(301,220,6,18);
  49.  
  50. fill(#b3cb31);
  51. rect(186,183,7,11);
  52.  
  53. fill(#e84562);
  54. rect(171,175,16,26);
  55.  
  56. fill(#e84562);
  57. rect(174,200,10,21);
  58.  
  59. fill(#e84562);
  60. rect(176,220,6,18);
  61.  
  62.  
  63. // draw ellipse
  64. fill(#b3cb31);
  65. ellipse(232,115,10,10);
  66. ellipse(255,115,10,10);
  67. fill(#b3cb31);
  68. ellipse(304,247,17,17);
  69. ellipse(179,247,17,17);
  70. fill(#e84562);
  71. ellipse(272,124,13,18);
  72. ellipse(215,124,13,18);
  73.  
  74. }
Add Comment
Please, Sign In to add comment