Pookkalam by ASWATHI P

Code

color3 = color(r=255, g=20, b=147, a=0.5)
c3 = circle(r=20,fill=color3)
show(c3)
a = circle(r=150,stroke='brown')
b = circle(r=140)
c = circle(r=130)
d = circle(r=120)
e = circle(r=100, fill ="#800000")
z1 = line(x1=85, y1=85, x2=92, y2=92, stroke="yellow", stroke_width=12) | repeat(54, rotate(8))
z2 = line(x1=92, y1=92, x2=99, y2=99, stroke='yellow', stroke_width=12) | rotate(20) | repeat(46, rotate(8))
z3 = line(x1=99, y1=99, x2=106, y2=106, stroke="yellow", stroke_width=12) | repeat(54, rotate(8))
z4 = line(x1=85, y1=85, x2=92, y2=92, stroke="brown",stroke_width=10) | rotate(20) | repeat(54, rotate(8))
z5 = line(x1=92, y1=92, x2=99, y2=99, stroke='brown',stroke_width=11) | repeat(46, rotate(8))
z6 = line(x1=99, y1=99, x2=106, y2=106, stroke="brown",stroke_width=12) | rotate(20) | repeat(54, rotate(8))
z7 = line(x1=78, y1=78, x2=85, y2=85, stroke='yellow', stroke_width=9) | rotate(20) | repeat(46, rotate(8))
z8 = line(x1=78, y1=78, x2=85, y2=85, stroke='brown', stroke_width=9) | repeat(46, rotate(8))
z9 = line(x1=71, y1=71, x2=78, y2=78, stroke='yellow', stroke_width=9) |  repeat(46, rotate(8))
z0 = line(x1=71, y1=71, x2=78, y2=78, stroke='brown',stroke_width=9) | rotate(20) | repeat(46, rotate(8))
show(z1,z2,z3,z4,z5,z6,z7,z8,z9,z0,a,b,c,d,e)
shape5 = circle(x=50, y=0, r=20 ,fill="yellow" , stroke="yellow") | repeat(10, rotate(40))
show(shape5)
s1 = ellipse(fill='#E3319D',stroke='#E3319D')
s2 = s1 | rotate(45)
s3 = s1 | rotate(90)
s4 = s1 | rotate(135)
show(s1, s2, s3, s4)
shape4 = ellipse(x=70 ,w=30, h=25,fill='yellow',stroke='yellow') | repeat(8, rotate(45))
show(shape4)
color1 = color(r=255, g=140, b=0, a=0.5)
c2 = circle(r=50,fill='#E3319D',stroke='#E3319D')
show(c2)
shape1 = circle(x=25, y=0, r=15,fill='yellow',stroke='yellow') | repeat(10, rotate(60))
show(shape1)
shape2 = circle(x=30, y=0, r=10,fill='#800000',stroke='#800000') | repeat(10, rotate(60))
show(shape2)
shape3 = circle(x=25, y=0, r=5,fill='#DA70D6',stroke='#DA70D6') | repeat(8, rotate(60))
show(shape3)
c4 = circle(r=5,fill='yellow')
show(c4)