Pookkalam by Shaheem PP

Code

r=rectangle(h=150, w=150,fill="green",stroke="none")
show(r)
c = circle(r=150, fill="yellow", stroke="none")
show(c)
c1= circle(r=100, fill="white", stroke="none")
show(c1)
for i in range(0,181,10):
    s1 = ellipse(w=200, h=100, fill="orange", stroke="none") | rotate(i)
    show(s1)
for i in range(0,181,10):
    d2 = rectangle(w=100, h=100, fill="pink", stroke="none") | rotate(i)
    show(d2)
for i in range(0,181,10):
    d2 = rectangle(w=100, h=100, fill="pink", stroke="none") | rotate(i)
    show(d2)
    
c = circle(x=125, y=0, r=25 , fill="brown", stroke="none")
c1 = circle(x=126, y=0, r=15 , fill="white", stroke="none")
c2 = circle(x=126, y=0, r=5 , fill="yellow", stroke="none")
show(c,c1,c2)
c = circle(x=-125, y=0, r=25 , fill="brown", stroke="none")
c1 = circle(x=-126, y=0, r=15 , fill="white", stroke="none")
c2 = circle(x=-126, y=0, r=5 , fill="yellow", stroke="none")
show(c,c1,c2)
c = circle(x=0, y=125, r=25 , fill="brown", stroke="none")
c1 = circle(x=0, y=126, r=15 , fill="white", stroke="none")
c2 = circle(x=0, y=126, r=5 , fill="yellow", stroke="none")
show(c,c1,c2)
c = circle(x=0, y=-125, r=25 , fill="brown", stroke="none")
c1 = circle(x=0, y=-126, r=15 , fill="white", stroke="none")
c2 = circle(x=0, y=-126, r=5 , fill="yellow", stroke="none")
show(c,c1,c2)
c = circle(r=25,fill="white", stroke="none")
show(c)
c = circle(r=7,fill="yellow", stroke="none")
show(c)