Last active
January 28, 2025 08:09
-
-
Save roblogic/8e24e37fd016ab733c88fef0fe268d30 to your computer and use it in GitHub Desktop.
sierpinski triangle https://codegolf.stackexchange.com/a/122995/15940
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
0DATA0,160,90,0,180,160 | |
1HGR:HCOLOR=3:DIM x(3),y(3):FOR i=0to 2:READ x(i),y(i):HPLOT x(i),y(i):NEXT i | |
2x=int(RND(1)*180):y=int(RND(1)*150):HPLOT x,y:FOR i=1to999:v=int(rnd(1)*3):x=(x+x(v))/2:y=(y+y(v))/2:HPLOT x,y:NEXT:GOTO2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment