Pookkalam by Sandra Nair

Code

#CREATE POOKALAM

c1 = circle(r=5, fill="red", stroke_width=3, stroke="yellow")
r1 = rectangle(h=18, w=17, fill="green") | repeat (3, rotate(60))
c2 = circle(r=18, fill="#eb1c8e", stroke="white", stroke_width=4)
s1 = ellipse(h=80,w=25, fill="#eb0505", stroke="yellow", stroke_width=4) | repeat (10, rotate(60))
r2 = rectangle(h=90,w=90, fill="#05e81b", stroke="#cc040e", stroke_width=2) | repeat (10, rotate(70))
s2 = ellipse(h=190,w=70, fill="white", stroke="blue", stroke_width=3) | repeat (16, rotate(50))
r3 = rectangle(h=190,w=190, fill="red") | repeat (10, rotate(80))
c3 = circle(r=136, fill="white", stroke="brown") | repeat (10, rotate(10))
s3 = ellipse(h=290,w=70, fill="orange", stroke="yellow", stroke_width=3) | repeat (17, rotate(80))
c5 = circle(r=148, fill="green")

#show

show (c5,s3,c3,r3,s2,r2,s1,c2,r1,c1)