Pookkalam by Arathi K P

Code

c1 = circle(r=150, fill="red" ,stroke="none")
show(c1)
con=rectangle(w=200,h=200,fill="pink",stroke="green",stroke_width=5) | repeat(30,rotate(50))
show(con)
c2 = circle(r=95, fill="blue" ,stroke="none")
show(c2)
c3 = circle(r=90, fill="green",stroke="none")
c4 = circle(r=65, fill="orange", stroke="none")
c5 = circle(r=50, fill="purple", stroke="none")
show(c3,c4,c5)
sshape = circle(x=80, y=0, r=8,fill="yellow",stroke="brown",stroke_width=2) | repeat(36, rotate(10))
show(sshape)
ishape = circle(x=10, y=0, r=40,stroke="white",stroke_width=3) | repeat(4, rotate(90))
show(ishape)
c = circle(r=5, fill="purple", stroke="none")
show(c)
fl=ellipse(w=50,h=10,fill="red")| repeat(6,rotate(120))|scale(0.6)
show(fl)
sc1=circle(x=120, y=120,r=20, fill="indigo",stroke="brown", stroke_width=5)
sc2=circle(x=120, y=-120,r=20, fill="indigo",stroke="brown", stroke_width=5)
sc3=circle(x=-120, y=120,r=20, fill="indigo",stroke="brown", stroke_width=5)
sc4=circle(x=-120, y=-120,r=20, fill="indigo",stroke="brown", stroke_width=5)
shape =sc1+sc2+sc3+sc4
show(shape)