Pookkalam by Haritha

Code

c = circle(r=150, fill="#09613f")
c1 = circle(r=146, fill="#a30f56")
show(c,c1)	
r3=rectangle(w=182,h=182,fill='maroon', stroke="#cf6783")
r4=r3|repeat(10,rotate(60))
show(r4)
r5=rectangle(w=162,h=162,fill='yellow', stroke="none")
r6=r5|repeat(10,rotate(50))
show(r6)
r7=rectangle(w=142,h=142,fill='#5dd0f0', stroke="none")
r8=r7|repeat(10,rotate(50))
show(r8)
c2 = circle(r=80, fill="#a948cf")
show(c2)
c3 = circle(r=76, fill="yellow")
show(c3)
r9=rectangle(w=102,h=102,fill="maroon",stroke="none")
r10=r9|repeat(2,rotate(45))
show (r10)
e=ellipse(w=120,h=50,fill="orange",stroke="none")
e1=e|repeat(4,rotate(45))
show(e1)
c4=circle(r=42,fill="green")
show(c4)
shape = ellipse(x=15, y=0, w=40, h=28, fill="red", stroke="none")|repeat(3, rotate(120))
show(shape)
shape1= ellipse(x=-15, y=0, w=40, h=28, fill="white", stroke="none")|repeat(3, rotate(120))
show(shape1)
c6=circle(r=23,fill="magenta", stroke="none")
show(c6)
e3=ellipse(w=40,h=10,fill="blue", stroke="none")
e4=e3|repeat(4,rotate(45))
show(e4)
c7=circle(r=10,fill="yellow")
show(c7)
c8=circle(r=8,fill="brown")
show(c8)
c9=circle(r=6,fill="yellow")
show(c9)
shape = circle(x=130, y=0, r=10, fill="#cf67b3") | repeat(36, rotate(10))
show(shape)