Advertisement
UnaClocker

Apple II Basic Visual Program

Feb 24th, 2023
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | Source Code | 0 0
  1. 1 REM HYPERBOOL / ONEINDIGE LUS
  2. 10 HOME : HGR2
  3. 13 FOR C=1 TO 7
  4. 15 HCOLOR=C
  5. 20 PI=3.14159 : D=1.95
  6. 30 FOR A = 0 TO PI *2 STEP PI/30
  7. 40 X1=INT(280/2) + COS(A) * 40 + 0.5
  8. 50 Y1=30 + SIN(A) * 20 + 0.5
  9. 60 X2=INT(280/2) + COS(A+D) * 50 + 0.5
  10. 70 Y2=140+SIN(A+D)*40+0.5
  11. 80 HPLOT X1,Y1 TO X2,Y2
  12. 90 FOR Q=1 TO 500: NEXT Q
  13. 100 NEXT
  14. 101 NEXT C
  15. 105 CLEAR
  16. 107 GOTO 13
  17. 110 END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement