translate(-150, -150)
for i in range(10, 3600, 10):
    fill(random(), random()/2, random())
    oval(i/10000, 1, 10*i, 25*i)
    save()
    rotate(i/2)
    fill(i/3, i/55, i/45)
    rect(100, 100, 222, 120)
    restore()
fill(i/3, i/5, i/45)
stroke(10, 20, 10)
newpath()
moveto(400, 40)
lineto(40, 2000)
lineto(40, 2000)
closepath()
drawpath()

Code
TinyPy
TMT