Pookkalam by Swathi R

Code

c1=circle(r=95,stroke="red",fill="red")
show(c1)
c1=circle(r=81,stroke="orange",fill="blue",stroke_width=10)
show(c1)
c1=circle(x=0,y=50,r=25,stroke="yellow",fill="red",stroke_width=2)|repeat(6, rotate(60))
show(c1)
c1=circle(r=50,stroke="violet",fill="violet")
show(c1)
c1=circle(r=20,stroke="yellow",fill="red",stroke_width=4)
show(c1)
p1=point(x=0,y=20)
p2=point(x=10,y=35)
p3=point(x=0,y=50)
p4=point(x=-10,y=35)
shape=polygon([p1,p2,p3,p4],stroke="yellow",fill="yellow")|repeat(12, rotate(40))
show(shape)