Pookkalam by Emy Pio

Code

def dot(x,y):
    c1=circle(x=x,y=y,r=10,fill="black")
    return c1
c=circle(r=150,fill="#FF6347",stroke_width=10)
show(c)
shape=circle (x=125,y=0,r=10,fill="yellow") | repeat(36,rotate(10))
show(shape)
c1=circle(r=100,fill="red",stroke_color="green",stroke_width=8)
c2=circle(r=85,fill="yellow",stroke_width=7)
c3=circle(r=65,fill="red",stroke_width=5)
c4=circle(r=50,fill="yellow",stroke_width=3)
show(c1,c2,c3,c4)
s=ellipse (w=100,h=100/3,fill="#FF6666",x=-50) |repeat(15,rotate(30))
show(s)
shape=rectangle(w=50,h=50,fill="#FF1010")|repeat(60,rotate(10))|scale(0.9)
show (shape)
d=dot(x=0,y=0)
show (d)