Pookkalam by AYLIN MARIAM

Code

c1 = circle(r=110)
c2= circle(r=75)
show(c1,c2)
c=rectangle(h=105,w=105)|rotate(45)
show(c)
c = rectangle(h=75,w=75)
show(c)
c = rectangle(h=53,w=53)|rotate(45)
show(c)
c = ellipse(h=220,w=300/2)
show(c)
c = ellipse(h=200,w=300/2)|rotate(90)
show(c)
c1 = circle(r=150, fill="coral", stroke="none")
c2 = circle(r=100, fill="red", stroke="none")
show(c1, c2)
e=ellipse(h=290,w=80,fill="#DC143C",stroke="pink",stroke_width="4")|repeat(100, rotate(45))
show(e)
e1=ellipse(h=250,w=70,fill="yellow",stroke="blue",stroke_width="4")|repeat(100, rotate(45))
show(e1)
e2=ellipse(h=200,w=60,fill="#FF9413",stroke="red",stroke_width="4")|repeat(100, rotate(45))
show(e2)
c=circle(r=80,fill="#FCDFFF",stroke="none")
show(c)
c=rectangle(h=105,w=105 , fill="brown")|rotate(45)
show(c)
c = rectangle(h=75,w=75 , fill="yellow")
show(c)
c = rectangle(h=53,w=53 ,fill="purple")|rotate(45)
show(c)
c = rectangle(h=20,w=20 ,fill="green")|rotate(45)
show(c)

c=circle(x=47,y=115,r=10,fill="green",stroke_width="3",stroke="#16E2F5")|repeat(8, rotate(45))
show(c)