Pookkalam by Murshidul Haqe

Code

c = circle(r=140,fill="brown")

show(c)
c1 = circle(r=115,fill="orange")
show(c1)
c2 = circle(r=10,x=0,y=125,fill="yellow")
c3 = circle(r=10,x=125,y=0, fill="yellow")
c4 = circle(r=10,x=-125,y=0, fill="yellow")
c5 = circle(r=10,x=0,y=-125, fill="yellow")
show(c2, c3, c4, c5)
e1 = ellipse(h=230,w=90, fill="blue") |repeat(55,rotate(40))
show(e1)
c6 = circle(r=90,fill="green")
show(c6)
s1 = rectangle(w=125, h=125,fill="peachpuff") |rotate(15) |repeat(10,rotate(30))
s2 = rectangle(w=115, h=115, fill="peachpuff") |repeat(10,rotate(30))
s3 = rectangle(w=105, h=105,fill="orange") |rotate(15) |repeat(10,rotate(30))
s4 = rectangle(w=95, h=95, fill="orange") |repeat(10, rotate(30))
show(s1,s2,s3,s4)
c7 = circle(r=55,fill="white")
show(c7)
e2 = ellipse(h=110,w=25,fill="Tomato") |repeat(55,rotate(40))
show(e2)
c8 = circle(r=30,fill="yellow")
show(c8)