Pookkalam by Aleena Pascal

Code

c = circle(r=60,fill="pink")

r = rectangle(w=100,h=100, fill="blue")|repeat(5,rotate(60))

r2= rectangle(w=50,h=50,fill="green")|repeat(12,rotate(30))

r3= rectangle(w=25,h=25,fill="yellow")|repeat(5,rotate(60))

c3= circle(r=12.5,fill="brown")

r4= rectangle(w=12.5,h=12.5,fill="orange")|repeat(5,rotate(60))

c4=circle(r=6.25,fill="cyan")

c5=circle(r=3,fill="red")

mc=circle(r=72,fill="purple")

shapes= mc+r+c+r2+r3+c3+r4+c4+c5

show(shapes)