Pookkalam by Diya krishna A

Code

c=circle(r=150,fill="black",stroke="none")
show(c)
shape = rectangle(w=200, h=200,fill="brown",stroke="none") | repeat(9, rotate(20))
show(shape)
shape = rectangle(w=200, h=200,fill="white",stroke="none") | repeat(9, rotate(20))
show(shape)
shape = rectangle(w=200, h=200,fill="yellow",stroke="none") | repeat(7, rotate(40))
show(shape)
shape = rectangle(w=200, h=200,fill="orange",stroke="none") | repeat(5, rotate(50))
show(shape)
shape = rectangle(w=200, h=200,fill="red",stroke="black") | repeat(3, rotate(60))
show(shape)
c = circle(fill="orange",stroke="red")
show(c)
shape=ellipse(fill="yellow",stroke="none")| repeat(3,rotate(60))
show(shape)

c = circle(r=50,fill="green",stroke="none")
show(c)
c = circle(r=40,fill="red",stroke="none")
show(c)
c = circle(r=30,fill="orange",stroke="none")
show(c)
c = circle(r=20,fill="yellow",stroke="none")
show(c)
c = circle(r=10,fill="gold",stroke="none")
show(c)
c = circle(r=5,fill="white",stroke="none")
show(c)