Pookkalam by Kiran Kurian

Code

shape = rectangle(w=250, h=250) | repeat(60, rotate(5)|scale(0.92))
show(shape)
shape = ellipse() | repeat(3, rotate(60))
show(shape)
shape = rectangle(w=200, h=200) | repeat(9, rotate(10))
show(shape)
s1 = circle(x=50, y=0, r=50) + circle(x=75, y=0, r=25)
s2 = s1 | rotate(90)
s3 = s1 | rotate(180)
s4 = s1 | rotate(270)
show(s1, s2, s3, s4)