Pookkalam by Stephy A S

Code

z1 = point(x=0,y=35)
z2 = point(x=-35,y=0)
z3 = point(x=35,y=0)
c1 = polygon([z1,z2,z3],fill="purple",stroke_width='0') | repeat(50, rotate(30)) 
c2 = circle(x=0,y=0,r=20,fill="yellow") 
c3 = circle(x=0,y=0,r=10,fill="brown")
c4 = circle(x=20,y=0,r=20,fill='green')|repeat(6,rotate(60))
c5 = circle(r=65,fill="#db8904",stroke="none")
dot = circle(r=3,fill="black",stroke="none")
d1 = dot | translate(x=58,y=0)
dr = d1 | repeat(20,rotate(20))
c6 = ellipse(w=200,h=12,fill="white",stroke="orange")|repeat(25,rotate(10))
c7 = circle(r=100,fill="red",stroke="none")
rec = rectangle(w=180,h=180,fill="#f7ff0a",stroke="none")
r1 = rec | repeat(20,rotate(20))
c8 = circle(r=129,fill="green",stroke="none")
c9 = circle(r=135,fill="#0599e3",stroke="none")
show(c9,c8,r1,c7,c6,c5,dr,c4,c1,c2,c3)