Pookkalam by Fathima Busthana

Code

c1=circle(r=150,fill="yellow", stroke="green")
show(c1)
rec=rectangle(w=220,h=200,fill="green")|repeat(30,rotate(30))
show(rec)
petal=ellipse(y=60,w=80,h=150,fill="pink",stroke="none")|repeat(20,rotate(30))
show(petal)


r1=rectangle(w=100,h=180,fill="white",stroke="none")|repeat(10,rotate(30))
r2=rectangle(w=90,h=170,fill="orange", stroke="none")|repeat(10,rotate(30))
r3=rectangle(w=80,h=160,fill="gray", stroke="none")|repeat(10,rotate(30))
show(r1,r2,r3)
c2=circle(r=70,fill="blue")
show(c2)  
for i in range(2):
    e1=rectangle(w=70,h=70,fill="white")
    e2=rectangle(w=80,h=80,fill="blue")
    e3=rectangle(w=90,h=90,fill="orange")
    e4=rectangle(w=100,h=100,fill="brown")
    
    e5=e1+e2+e3+e4|repeat(3,rotate(30))
    show(e5+e4+e3+e2+e1)
    s1=ellipse(w=20,h=70,fill="purple")
    s2=s1|rotate(45)
    s3=s1|rotate(90)
    s4=s1|rotate(135)
    show(s1,s2,s3,s4)