Pookkalam by J PRAPANCH

Code

c2 = circle(r=500,fill="yellow")
show(c2)
c1 = circle(r=190,fill="#9DC209",stroke="none")
show(c1)
c1 = circle(r=140,fill="yellow",stroke="none")
show(c1)
r1 = circle(r=114,fill="#FF00FF",stroke="red",stroke_width=5) 
show(r1)
p1=point(x=25,y=70)
p2=point(x=-25,y=70)
p3=point(x=0,y=110)
p4=point(x=0,y=30)
s = polygon([p1,p4,p2,p3],fill=color(r=255,g=255,b=0),stroke="blue",stroke_width=3) | repeat(8,rotate(45))
show(s)
c2 = circle(r=70,fill=color(r=255,g=255,b=0),stroke=color(r=0,g=255,b=0),stroke_width=5)
show(c2)
s1 = circle(x=28, y=0, r=27, fill="#F87217",stroke="none") | repeat(24, rotate(30))
s2 = circle(x=20, y=0, r=19, fill="black") | repeat(30, rotate(40))
s3 = circle(x=18, y=0, r=17,stroke="yellow") | repeat(30, rotate(40))
s4 = circle(x=15, y=0, r=14,stroke="red") | repeat(30, rotate(40))
s5 = circle(r=5, fill="yellow",stroke="#FF00FF",stroke_width=2)
show(s1,s2,s3,s4,s5)
r = circle(x=0,y=62,r=5,fill="#0022FF",stroke="none")|repeat(50,rotate(20))
show(r)