Pookkalam by Fiza Fathima

Code

c = circle(stroke="black",stroke_width=3,r=140)
show(c)
c=circle(fill="maroon",stroke="white",stroke_width=4,r=120)
show(c)
shape=circle(fill="black",x=129,y=0,r=12)|repeat(45,rotate(10))
show(shape)
shape=circle(fill="maroon",x=129,y=0,r=10)|repeat(45,rotate(10))
show(shape)
shape=circle(fill="orangered",x=129,y=0,r=8)|repeat(45,rotate(10))
show(shape)
shape=circle(fill="darkorange",x=129,y=0,r=6)|repeat(45,rotate(10))
show(shape)
shape=circle(x=129,y=0,r=1.5)|repeat(45,rotate(10))
show(shape)
c=circle(fill="orangered",stroke="black",stroke_width=0.5,r=110)
show(c)
c=circle(fill="darkorange",stroke="black",stroke_width=3,r=100)
show(c)
shape=rectangle(fill="maroon",x=93,y=0, h=10, w=10)|repeat(45,rotate(10))
show(shape)
c=circle(stroke="black",stroke_width=3,r=86)
show(c)
shape=rectangle(w=120,h=120)|repeat(30,rotate(8))
show(shape)
c=circle(fill="maroon", r=53)
show(c)
c=circle(fill="orangered",r=40)
show(c)
c=circle(fill="darkorange",stroke="black",stroke_width=6,r=30)
show(c)