Created
September 6, 2020 20:53
-
-
Save SegHaxx/cca9dc66559a08aeacb5deac9bb72535 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 for y=-16 to 16 | |
20 for x=-16 to 5 | |
30 ca=x*.13 | |
40 cb=y*.075 | |
50 a=ca:b=cb | |
70 for i=0 to 94 | |
80 t=a*a-b*b+ca | |
90 b=2*a*b+cb:a=t | |
110 if (a*a+b*b)>4 then goto 150 | |
120 next i | |
130 print " ";:goto 160 | |
150 print chr$(33+i); | |
160 next x:next y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment