Pookkalam by Akhil K John

Code

c=circle(r=144,fill="lime")
show(c)
rec = rectangle(w=200,h=200,fill="black",stroke="none")
r100 = rec | repeat(20,rotate(135))
rec200 = rectangle(w=180,h=180,fill="white",stroke="none")
r200 = rec200 | repeat(25,rotate(80))
show(r100,r200)
shape6=rectangle(x=0,y=0,w=160,h=160,fill="red")|repeat(15,rotate(50))
show(shape6)
color1 = color(r=256,g=0,b=0,a=0.5)
k = circle(r=50,fill=color1,stroke="none")
k1 = k | translate(x=40,y=0) 
k2 = k1 | repeat(5,rotate(72))
show(k2)
shape = rectangle(w=110, h=110,fill="turquoise",stroke="none") | repeat(9, rotate(10));
show(shape);
shape7=rectangle(x=0,y=0,w=90,h=90,fill="gold")|repeat(15,rotate(50))
show(shape7)
rec101 = rectangle(w=65,h=65,fill="darkblue",stroke="none")
r101 = rec101 | repeat(20,rotate(135))
show (r101)
shape5=rectangle(x=0,y=0,w=50,h=50,fill="cyan")|repeat(15,rotate(50))
show(shape5)