I'm currently trying to make a program in which the turtle creates a spiral of circles, and once the spiral stops, the turtle will create a overlay of circles that should perfectly overlap the existing ones whilst constantly changing color, however the circles won't overlap, does anyone know on how to make the entire spiral change color or how to make the overlay of circles perfectly overlap? Here is my code so far.
painter = trtl.Turtle()
painter.speed(0)
painter.penup()
painter.color("salmon")
painter.pensize(2)
spiral_space = 0
while (spiral_space < 100): #here is where the spiral gets created
painter.goto(0,0)
painter.right(20)
painter.forward(50+(spiral_space*1))
painter.pendown()
painter.circle(10)
painter.penup()
spiral_space = spiral_space + 1
if (spiral_space % 1 == 0):
painter.color("yellow")
if (spiral_space % 2 == 0):
painter.color("red")
line = 6 #and here is where the overlay starts to get created
while (line > 5):
painter.goto(0,0)
painter.right(20)
painter.forward(80)
painter.pendown()
painter.circle(10)
painter.penup()
line = line + 1
if (line % 18 == 0):
painter.color("navy")
if (line % 36 == 0):
painter.color("salmon")
wn = trtl.Screen()
wn.mainloop()```
To answer your second question, the problem is that the original circles are drawn in a spiral but the overlay circles are drawn in a circle. To make them overlap, you need to draw the overlay circles as one loop of the spiral:
To address your first question, I would restructure your program to make a spiral of turtles instead of a spiral using turtles:
We can just loop through the turtles (
clones
) changing their color as we see fit.