Pookkalam by Hazeena R L

Code

c = circle()
show(c)
bg = rectangle(w=300,h=300,fill="white")

e1 = ellipse(fill="orange", stroke="brown", h=25) | scale(0.5) | translate(x=50)
e1 = e1 | repeat(10, rotate(36))

s1 = rectangle(w=100,h=100,fill="gold", stroke="none") | repeat(10, rotate(36))
s4 = rectangle(w=105,h=105,fill="black", stroke="none") | repeat(10, rotate(36))

s2 = rectangle(w=150,h=150,fill="yellow", stroke="none") | repeat(10, rotate(36))
s3 = rectangle(w=155,h=155,fill="black", stroke="none") | repeat(10, rotate(36))

show(s3+s2+s4+s1+e1)