Pookkalam by Muhammed Yaseen

Code

c4=circle(r=135,fill="yellow",stroke_width=2,stroke="#EA3D18")
show(c4)
s5= ellipse(x=0,y=100,w=15,h=60,fill="#EA3D18")
s6= s5 | repeat(82,rotate(5))
show(s5,s6)
shape = circle(x=100, y=0,r=20,fill="green") | repeat(32, rotate(20))
show(shape)
shape = circle(x=100, y=0,r=10,fill="yellow") | repeat(32, rotate(20))
show(shape)

c1 = circle(fill="#EA3D18")
show(c1)
s7= ellipse(x=0,y=60,w=15,h=60,fill="green")
s8= s7 | repeat(40,rotate(10))
show(s7,s8)
shape = rectangle(w=110, h=110,fill="yellow") | repeat(18, rotate(10))
show(shape)
s3= ellipse(x=0,y=50,w=15,h=60,fill="#EA3D18")
s4= s3 | repeat(18,rotate(20))
show(s3,s4)
c3=circle(r=35,fill="green")
show(c3)
s= ellipse(x=0,y=15,w=10,h=25,fill="yellow")
s2= s| repeat(12,rotate(30))
show(s,s2)
c2 = circle(r=5,fill="#EA3D18")
show(c2)