Pookkalam by Vaishnav k

Code

shape = circle(x=50, y=0, r=50, fill="green", stroke="none") | repeat(6, rotate(60))
show(shape)
shape = circle(x=135, y=0, r=15, fill="red") | repeat(36, rotate(10))
show(shape)
p1 = point(x=20, y=-105)
p2 = point(x=0, y=-90)
p3 = point(x=-20, y=-105)
p4 = point(x=0, y=-120)
s = polygon([p1, p2, p3, p4])
shape = s | repeat(6, rotate(60))
show(shape)
c = circle(x=105,y=0,r=5)
shape = c | repeat(6, rotate(60))
show(shape)
shape = circle(x=125, y=0, r=5, fill="pink") | repeat(36, rotate(10))
show(shape)