Skip to content

Instantly share code, notes, and snippets.

@myrkvi
Created February 12, 2014 09:52
Show Gist options
  • Save myrkvi/8952682 to your computer and use it in GitHub Desktop.
Save myrkvi/8952682 to your computer and use it in GitHub Desktop.
from turtle import *
def configureTurtle():
colormode(255)
hideturtle()
delay(1)
speed(0)
def main():
s = 1
for c in range(255, 0, -1):
color( (c, c, c) )
for x in range(27):
fd( (.2 * x) + ( s * .025 ) )
left(45)
right(60)
fd(10+s)
s = ( s * .005 ) + (s+0.5)
return None
if __name__ == "__main__":
configureTurtle()
main()
done()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment