Pookkalam by Meghana S

Code

c1 = circle(r=150,fill="plum")

show(c1)

c8=circle(r=140,fill="red")

show(c8)

s1=rectangle(w=210,h=210,fill="blue")|repeat(5,rotate(20))

show(s1)

c9=circle(r=120,fill="orange",stroke="orange")

show(c9)

e1=ellipse(w=210,h=100,fill="green")|repeat(10,rotate(20))

show(e1)

e=ellipse(w=200,h=65,fill="yellow")|repeat(17,rotate(20))

show(e)

y=color(r=255,g=255,b=0)

o=color(r=237,g=145,b=0)

r=color(r=255,g=0,b=0)

c5=circle(r=35,fill=y)

c6=circle(r=45,fill=o)

c7=circle(r=55,fill=r)

show(c7,c6,c5)

c=color(r=186,g=45,b=211,a=0.4)

s=color(r=255,g=255,b=255,a=0.8)

c2=circle(r=25,fill=s)

c3=circle(r=15,fill=c)

show(c2,c3)

c4=circle(r=10,fill="pink")

show(c4)