Pookkalam by MEGHA RAJU

Code

c = circle(r=150,fill="brown",stroke="none")
show(c)
shape = rectangle(w=200, h=200,fill="orange",stroke="none") | repeat(2, rotate(40))
show(shape)
shape = rectangle(w=200, h=200,fill="gold",stroke="none") | repeat(5, rotate(70))
show(shape)
shape = rectangle(w=200, h=200,fill="yellow",stroke="none") | repeat(3, rotate(60))
show(shape)
c = circle(fill="green",stroke="none")
show(c)
shape = ellipse(fill="red",stroke="none") | repeat(3, rotate(60))
show(shape)
c = circle(r=80,fill="orange",stroke="none")
show(c)
c = circle(r=50,fill="green",stroke="none")
show(c)
shape = rectangle(w=50, h=50,fill="red",stroke="none") | repeat(9, rotate(10))
show(shape)
c = circle(r=10,fill="gold",stroke="none")
show(c)
shape = circle(x=30, y=30, r=20) | repeat(36, rotate(70))
show(shape)
shape = circle(x=20, y=0, r=10) | repeat(36, rotate(70))
show(shape)