Pookkalam by Rasica K Nambiar

Code

c = circle()
show(c)
white = color(r=253, g=255, b=117)
white1 = color(r=255, g=255, b=255)
black=color(r=0,g=0,b=0)
yellow= color(r=255, g=255, b=0)
orange = color(r=255, g=115, b=13)
meroon= color(r=209, g=0, b=0)
darkgreen=color(r=17,g=102,b=4)
darkred=color(r=199,b=0,g=0)
red=color(r=255,b=13,g=0)
pink=color(r=255,g=61,b=135)


r1 = rectangle(w=200, h=200,fill=yellow, stroke="none") | repeat(9, rotate(10))
r2 = rectangle(w=180, h=180,fill=orange, stroke="none") | repeat(9, rotate(10))
e= ellipse(x=0,y=60,w=30,h=100,fill=darkred,stroke=black)| repeat(70, rotate(10))
r3= rectangle(x=35,y=35,w=60, h=60,fill=white1, stroke="none")
r4= rectangle(x=35,y=35,w=45, h=45,fill=yellow,stroke="none") 
r5= rectangle(x=35,y=35,w=30, h=30,fill=orange, stroke="none") 
r6= rectangle(x=35,y=35,w=15, h=15,fill=black, stroke="none")
c9 = circle(x=0, y=0, r=3,fill=red, stroke="none")
com1=combine([r3,r4,r5,r6])| repeat(8, rotate(45))


show( r1,r2,e,com1,c9)