Pookkalam by Navya K Gopi

Code

s= circle(r=300,fill="white")
show(s)
p1 = point(x=0, y=140)
p2 = point(x=100, y=100)
p3 = point(x=-100, y=100)
shape1 = polygon([p1, p2,p3],fill="#4E3524",stroke="#4E3524")|repeat(48, rotate(7.5))
show(shape1)


p1 = point(x=0, y=130)
p2 = point(x=30, y=100)
p3 = point(x=-30, y=100)
shape1 = polygon([p1, p2,p3],fill='	#FF6600',stroke='	#FF6600')|repeat(48, rotate(7.5))
show(shape1)


p1 = point(x=0, y=120)
p2 = point(x=10, y=100)
p3 = point(x=-10, y=100)
shape = polygon([p1, p2,p3],fill='#FFA400',stroke='#FFA400')|repeat(48, rotate(7.5))
show(shape)

c2= circle(r=100,stroke='#FFCC00',stroke_width=15.5)+circle(r=74,fill="#FFC0CB")
show(c2)

c3= circle(x=0,y=80,r=10,stroke=' #FF69B4',stroke_width=4)|repeat(48, rotate(7.5))
show(c3)

c5=circle(r=59.9,fill="#B75CFF",stroke="#B75CFF")+circle(r=50,fill="#E7F2F8")
show(c5)

r1 = rectangle(w=94, h=94,stroke="#800080",stroke_width=6) | repeat(9, rotate(30))
show(r1)



f=color(r=204,g=0,b=0)
e1 = ellipse(x=0,y=30,w=10,h=20,fill=f,stroke=f)|repeat(7, rotate(7.5))
e2 = e1|rotate(70)
e3 = e2|rotate(70.5)
e4 = e3|rotate(70.5)
e5 = e4|rotate(70.8)
show(e1,e2,e2,e3,e4,e5)

c5=circle(r=15,fill="#008000",stroke="#008000")
show(c5)