Pookkalam by Anagha. N

Code

s = rectangle(x=100, y=0, w=25, h=25)
s = circle(x=140, y=0, r=10, fill="red",stroke="yellow", stroke_width=5)
s1 = s | repeat(20, scale(0.85))
s2 = s1 | repeat(36, rotate(10))
show(s2)
c1 = Circle(radius=50,fill="pink",stroke="#fa87f8")
c4 = Circle(radius=25,fill="red")
c2 = Circle(radius=100,fill="#d94343",stroke="green", stroke_width=6) 
r1= rectangle(w=50,h=50,fill="orange", stroke="brown",)|repeat(20, rotate(10)|scale(1))
r2= rectangle(w=120,h=120,stroke="pink", stroke_width=3)|repeat(50, rotate(10)|scale(1))
r3= rectangle(w=200,h=200,fill="orange",stroke="brown",stroke_width=5)|repeat(100, rotate(15)|scale(1))
show(r3,c2,c1,r1,r2,c4)