Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. %setscreen ("graphics:600;500")
  2. % %Anim2
  3. % for i : 40 .. 300
  4. % Draw.FillOval (i,250,40,40,12)
  5. % delay(10)
  6. % cls
  7. % end for
  8. %
  9. % Draw.FillOval (300,250,40,40,12)
  10. % delay (2000)
  11. % cls
  12. %
  13. % for i : 300 .. 550
  14. % Draw.FillOval (i,250,40,40,12)
  15. % delay(3)
  16. % cls
  17. % end for
  18.  
  19. %setscreen ("graphics:600;500")
  20. % %Anim3
  21. % for i : 40 .. 300
  22. % Draw.FillOval (i,250,40,40,12)
  23. % delay(10)
  24. % cls
  25. % end for
  26. %
  27. % Draw.FillOval (300,250,40,40,12)
  28. % delay (2000)
  29. % cls
  30. %
  31. % for i : 300 .. 450
  32. % Draw.FillOval (300,i,40,40,12)
  33. % delay(3)
  34. % cls
  35. % end for
  36.  
  37. %Anim4
  38. setscreen ("graphics:600;400")
  39. for i : 50 .. 550
  40. Draw.FillBox (i, 0, i + 50, 50, 12)
  41. delay (10)
  42. cls
  43. end for
  44.  
  45. for i : 0 .. 350
  46. Draw.FillBox (550, i, 600, i + 50, 12)
  47. delay (10)
  48. cls
  49. end for
  50.  
  51. for decreasing i : 550 .. 0
  52. Draw.FillBox (i, 350, i + 50, 400, 12)
  53. delay (10)
  54. cls
  55. end for
  56.  
  57. for decreasing i : 0 .. 350
  58. Draw.FillBox (0, 350, 50, 550 + 50, 12)
  59. delay (10)
  60. cls
  61. end for
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement