Pookkalam by Abin p thomas

Code

c = circle()
show(c)
p1 = color(r=0, g=0, b=139, a=0.5)

p2 = color(r=233, g=60, b=224, a=1)

p3 = color(r=122,g=20,b=28,a=1)

p4 = color(r=255,g=8,b=98,a=1)

c1 = circle(r=20,fill=p2,stroke_width=4,stroke="gold")

c2 = circle(r=40,stroke="yellow",stroke_width=4,fill="darkgreen")

c4 = circle(r=4,fill="orange",stroke="none")

s1 = ellipse(fill=p4,stroke="orange",stroke_width=3)

s2 = s1 | rotate(45)

s3 = s1 | rotate(90)

s4 = s1 | rotate(135)

c3 = circle(r=120,stroke_width=3,stroke="darkgreen",fill="yellow")

shape1 = rectangle(w=200, h=200,fill="green",stroke="red",stroke_width=5) | repeat(9, rotate(10))

shape2 = circle(x=45, y=15, r=5,fill="darkblue") | repeat(40, rotate(10))

shape3 = ellipse(h=20,w=5,fill="white",stroke="none") | repeat(9, rotate(50))

show(shape1,c3,s1, s2, s3, s4,shape2,c2,c1,shape3,c4)