Pookkalam by GODWIN GEORGE

Code

a = rectangle(x=0, y=0, w=200, h=200, fill="yellow", stroke="yellow")
a1 = a | rotate(45)
b = rectangle(x=0, y=0, w=200, h=200, fill="#F2790E", stroke="#F2790E")
b1 = b | rotate(110)
b2 = b | rotate(160)
c = circle(r=100, fill="white", stroke="white") 
e = circle(r=150, fill="black", stroke="black")
g = circle(r=50,fill="white",stroke="white")
i = circle(r=65,fill="#7C0818",stroke="#7C0818")
n = circle(r=140, fill="#056E23",stroke="#056E23")
s1 = ellipse(fill="#BF1B1B",stroke="#BF1B1B")
s2 = s1 | rotate(90)
r = ellipse(fill="#C512A2",stroke="#C512A2")
s3 = r | rotate(45)
s4 = r | rotate(135)
m=rectangle(w=90, h=10, fill = "purple", stroke = "none") | repeat(9, rotate(angle=20))
p = circle(r=30,fill="pink",stroke="pink")
p1 = circle(r=20,fill="orange",stroke="orange")
p2 = circle(r=10,fill="yellow",stroke="yellow")
show(e,n,a,b1,a1,b2,c,s1,s2,s3,s4,i,g,m,p,p1,p2)