Pookkalam by Farhan

Code

c1 = circle(x=0,y=0,r=142)
c2 = line(x1=0,y1=0, x2=100, y2=100) | repeat(210, rotate(2))
c3 = circle(x=0,y=0,r=135,fill="black")
c4= rectangle(w=200, h=180,fill="#800000")| repeat (9,rotate (60))
c5 = rectangle (w=150, h=180,fill="#FFA500") |repeat (9,rotate(30))
c6= circle (x=0,y=0,r=100,fill="white")
c7 = circle (x=0,y=0,r=90,fill="#FFBF00",stroke="#FFBF00")
c8=circle (r=85)
c9 = line(x1=0,y1=0, x2=70, y2=70,stroke="white") | repeat(210, rotate(2))
c10 = circle(x=0,y=0,r=83,fill="#800000")
show(c1,c2,c3,c4,c5,c6,c7,c9,c10)

d1= ellipse(h=144,w=50,x=0,y=10,stroke="white") | repeat(30, rotate(100))
d7= ellipse(h=140,w=50,x=0,y=10,fill="black") | repeat(30, rotate(100))
d8= ellipse(h=130,w=50,x=0,y=10,fill="#FFA500",stroke="#FFA500") | repeat(30, rotate(100))
d9= ellipse(h=120,w=50,x=0,y=10,fill="white",stroke="#FFA500") | repeat(30, rotate(100))
d2= circle (r=50,fill="#FFA500")
d3 = circle(x=0,y=39,r=5,stroke="#800000")|repeat(72,rotate(10))
d4 = circle (r=30,fill="#800000")
d5 = circle (r=28,fill="#800000")
d6 =ellipse(h=10,w=50,x=0,y=10,stroke="#FFA500") | repeat(60, rotate(100))

show  (d1,d7,d8,d9,d2,d3,d4,d5,d6)