Skip to content

Instantly share code, notes, and snippets.

@SegHaxx
Created September 6, 2020 20:53
Show Gist options
  • Save SegHaxx/cca9dc66559a08aeacb5deac9bb72535 to your computer and use it in GitHub Desktop.
Save SegHaxx/cca9dc66559a08aeacb5deac9bb72535 to your computer and use it in GitHub Desktop.
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