new amazing pattern


import turtle as t
import colorsys as c
t.tracer(200)
t.bgcolor('black')
t.width(5)
r=0.0
t.setup(1537,865)
for i in range(3000):
    r+=0.01
    color=c.hsv_to_rgb(r,1,1)
    t.pencolor(color)
    t.fd(i)
    t.rt(270)
    t.fd(i)
    t.rt(90)
    t.circle(i,270)
    t.fd(i)
    t.rt(90)
    t.fd(i)
    t.circle(30,90)
t.done()

Comments

Popular posts from this blog

python turtle animation 16

python turtle animation 15

python turtle animation 12