Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. int yxis;
  2.  
  3.  
  4. void setup(){
  5. size(900,426);
  6. background(0,0,128);
  7. noStroke();
  8. smooth();
  9.  
  10. yxis = 213;
  11.  
  12.  
  13. }
  14.  
  15. void draw(){
  16. fill(128,128,128);
  17. triangle(0,yxis,150,0,300,yxis);
  18.  
  19. fill(128,128,128);
  20. triangle(300,yxis,450,0,600,yxis);
  21.  
  22. fill(128,128,128);
  23. triangle(600,yxis,750,0,900,yxis);
  24.  
  25. fill(128,212,255);
  26. ellipse(width/2,height/2+106.5, 900, yxis);
  27.  
  28. fill(255,255,0);
  29. ellipse(width/10+780,height/10,50,50);
  30.  
  31. //fill(255,255,0);
  32. //textSize(50);
  33. //text("OK",width/2,height/2);
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement