Guest User

Untitled

a guest
Oct 4th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. """
  2. Inspired from
  3. https://www.reddit.com/r/math/comments/737077/a_walk_using_the_first_1_million_decimal_digits/
  4. """
  5.  
  6. import turtle
  7.  
  8. import colorsys
  9.  
  10. def draw(sequence, cycleLength, x=0, y=0):
  11. """
  12. sequence: iterable that generates single length number strings
  13. cycleLength: when to stop
  14. x, y: initial position of turtle with (0, 0) centre of window
  15. """
  16. t = turtle.Turtle()
  17. t.pu()
  18. t.setpos(x, y)
  19. t.pd()
  20. step = 1 / cycleLength
  21. for i, digit in enumerate(sequence):
  22. t.pencolor(colorsys.hls_to_rgb((i * step) % 1, 0.5, 1))
  23. digit = int(digit)
  24. t.setheading(digit * 36)
  25. t.fd(1)
  26. if i == cycleLength:
  27. return
  28.  
  29. def fibGen():
  30. a = 0
  31. b = 1
  32. while True:
  33. for s in str(b):
  34. yield s
  35. a, b = b, a + b
  36.  
  37. if __name__ == '__main__':
  38. ## turtle.tracer(0) # 0 for update only once it's done
  39. turtle.tracer(10000) # How many frames before each update
  40. draw(fibGen(), 10e4, 200, -200)
  41. turtle.update()
Add Comment
Please, Sign In to add comment