Pookkalam by Hamna Hindh

Code

c1=circle(x=0,y=0,r=150,fill="red", stroke="green")
show(c1)
       

s = rectangle(x=100,y=0,w=25,h=25)
s = circle(x=140,y=0,r=10,fill="yellow")
s1=s|repeat(20,scale(0.85))
s2=s1|repeat(36,rotate(10))
show(s2)
x1,y1=0,25
x2,y2=0,150
shape=line(x1,y1,x2,y2,stroke="green")|repeat(36,rotate(10))
show(shape)
shape = circle(x=25, y=0, r=10) | repeat(36, rotate(50))
show(shape)

shape1 = circle(x=35, y=0, r=10) | repeat(36, rotate(10))
show(shape1)

shape2 = circle(x=45, y=0, r=10) | repeat(36, rotate(10))
show(shape2)
shape3 = circle(x=55, y=0, r=10) | repeat(36, rotate(10))
show(shape3)
shape4 = circle(x=65, y=0, r=10) | repeat(36, rotate(10))
show(shape4)
shape5 = circle(x=75, y=0, r=10) | repeat(36, rotate(10))
show(shape5)
shape6 = circle(x=85, y=0, r=10) | repeat(36, rotate(10))
show(shape6)
shape7 = circle(x=95, y=0, r=10, stroke="green") | repeat(36, rotate(10))
show(shape7)
c3=circle(x=0,y=0,r=150,stroke="green",stroke_width=5)


show(c3)
c4=circle(x=0,y=0,r=125,stroke="green", stroke_width=3)
show(c4)
c5=circle(x=0,y=0,r=100,stroke="green", stroke_width=3)
show(c5)
c6=circle(x=0,y=0,r=50,stroke="green", stroke_width=3)
show(c6)
c7=circle(x=0,y=0,r=75,stroke="green", stroke_width=3)
show(c7)
c8=circle(x=0,y=0,r=115,stroke="green", stroke_width=3)
show(c8)
c9=circle(x=0,y=0,r=140,stroke="green", stroke_width=3)
show(c9)