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()
Create, edit, and import your Python scripts
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()