I think I accidentally made the golden ratio spirograph...
-
I was messing around with Python Turtle because I had nothing better to do... And while I was messing around, I did this...
import turtle
def main():
t = turtle.Turtle()
t.shape("turtle")
t.speed(100)
t.right(10)
length = 1
t.color("crimson")
for i in range(250):
t.forward(length)
t.right(100)
length = length + 0.5
main()And it looks very much like the golden ratio in the center... So I tried this...
import turtle
def main():
t = turtle.Turtle()
t.shape("turtle")
t.speed(100)
t.right(10)
length1 = 1
t.color("crimson")
for i in range(250):
t.forward(length1)
t.right(100)
length1 = length1 + 0.5
t.penup()
t.setpos(0,0)
t.pendown
length2 = 1
for i in range(250):
t.forward(length2)
t.left(100)
length2 = length2 + 0.5
main()And there was only one difference in the design, where the code stops is mirrored... That's it... No other variation... Any opinions?...