Advertisement
Guest User

Untitled

a guest
Jul 15th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.1/p5.js"></script>
  2. <script>
  3.  
  4. var big = 10
  5. var x = 300
  6. var y = 300
  7.  
  8. var speedx = 5
  9. var speedy = 3
  10.  
  11.  
  12. function setup() {
  13. createCanvas(600, 600)
  14.  
  15. }
  16.  
  17. function draw() {
  18. background(255,133,0)
  19. fill("black")
  20. ellipse(x, y, big, big)
  21.  
  22.  
  23.  
  24. x = x + speedx
  25. y = y + speedy
  26.  
  27. if (x >= 600 || x < 0) {
  28. speedx = -speedx
  29. } else if (y >= 600 || y < 0) {
  30. speedy = -speedy
  31. }
  32.  
  33. }
  34.  
  35. function mousePressed() {
  36. big = big + 15
  37. }
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement