Advertisement
Guest User

Untitled

a guest
Oct 13th, 2015
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. void setup(){
  2.  
  3. size(1000,600);
  4. background(255, 255, 255);
  5. int yPos = 50;
  6. int height = 100;
  7. int width = 100;
  8.  
  9. fill(232,22,247);
  10. noStroke();
  11. rect(100, yPos, 50, 200);
  12. ellipse(80, 205, 100, height);
  13.  
  14. fill(255);
  15. noStroke();
  16. ellipse(70, 170, 62, 70);
  17. //J
  18.  
  19. fill(22, 46, 247);
  20. noStroke();
  21. rect(160, yPos, width, 200);
  22. fill(255);
  23. rect(200, 100, 70, 30);
  24. fill(255);
  25. rect(200, 170, 70, 30);
  26. //E
  27.  
  28. fill(255, 236, 62);
  29. noStroke();
  30. rect(280, yPos, width, 200);
  31. fill(255);
  32. triangle(320, 250, 320, 170, 350, 250);
  33. fill (255);
  34. triangle(310, yPos, 340, 150, 340, yPos);
  35. //N
  36.  
  37. fill(206, 73, 10);
  38. noStroke();
  39. rect(390, yPos, width, 200);
  40. fill(255);
  41. triangle(430, 250, 430, 170, 460, 250);
  42. fill(255);
  43. triangle(420, yPos, 450, 150, 450, yPos);
  44. //N
  45.  
  46. fill(72, 245, 203);
  47. rect (500, yPos, 50, 200);
  48. //I
  49.  
  50. fill(240, 195, 245);
  51. rect (560, yPos, 50, 200);
  52. fill(240, 195, 245);
  53. rect(600, yPos, 70, 30);
  54. fill(240, 195, 245);
  55. rect(600, 110, 70, 30);
  56. //F
  57.  
  58. fill(250,95,23);
  59. noStroke();
  60. rect(675, yPos, width, 200);
  61. fill(255);
  62. rect(710, 100, 70, 30);
  63. fill(255);
  64. rect(710, 170, 70, 30);
  65. //E
  66.  
  67. fill(57, 245, 70);
  68. rect(780, yPos, 50, 200);
  69. ellipse(850, 100, width, height);
  70. triangle(780, 250, 780, 50, 900, 250);
  71. //R
  72. fill(255);
  73. triangle(810, 250, 810, 170, 870, 250);
  74. //triangeln i R
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement