moire1.py

Created by schraf

Created on August 27, 2022

183 Bytes

Moiré : https://fr.wikipedia.org/wiki/Moir%C3%A9_(physique)


import turtle
t = turtle
t.pensize(2)
t.speed(0)

def rayons():
 for a in range(120):
   t.setheading(3*a)
   t.fd(250)
   t.fd(-250)

rayons()
t.goto(0,-15)   
rayons()