Pookkalam by Anaina Ratnakumar

Code

c = circle(r=150, fill="black", stroke="none")
show(c)
r = rectangle(h=210, w=210, fill="white", stroke="none")
r1 = r | repeat(10, rotate(10))
show(r1)
r = rectangle(h=192, w=192, fill="yellow", stroke="none")
r1 = r | rotate(5)
r2 = r1 | repeat(10, rotate(10))
show(r2)
r = rectangle(h=178, w=178, fill="orange", stroke="none")
r1 = r | repeat(10, rotate(10))
show(r1)
r = rectangle(h=162, w=162, fill="red", stroke="none")
r1 = r | rotate(5)
r2 = r1 | repeat(10, rotate(10))
show(r2)
r = rectangle(h=150, w=150, fill="black", stroke="none")
r1 = r | repeat(10, rotate(10))
show(r1)
c = circle(r=99, fill="green", stroke="none")
show(c)
r = rectangle(h=135, w=135, fill="white",stroke="none")
r1 = r | repeat(10, rotate(10))
show(r1)
r = rectangle(h=100, w=100, fill="#F81184", stroke="none")
r1 = r | rotate(10)
r2 = r1 | repeat(10, rotate(10))
show(r2)
r = rectangle(h=50, w=50, fill="yellow", stroke="none")
r1 = r | repeat(10, rotate(10))
show(r1)