Pookkalam by HEMA K SHAJI

Code

c = circle (r= 7, fill = 'maroon')
c1 = circle (r = 15, fill = 'white' )
c2 = circle (r = 25, fill = 'maroon' )
r1 = rectangle ( w = 60, h = 60, fill = 'white' )
r1 = r1 | repeat (3, rotate ( 30 ) )
c0 = circle (r = 43, fill = 'maroon')
c3 = circle (r = 50, fill = 'white')
e1 = ellipse ( w = 20, h = 150, fill = 'maroon')
e1 = e1 | repeat ( 20, rotate ( 18 ))
c4 = circle (r = 76, fill = 'white')
c5 = circle (r = 83, fill = 'maroon')
e2 = ellipse ( w = 220, h = 90, fill = 'white')
e2 = e2 | repeat ( 5, rotate ( 45 ) )
c6 = circle (r = 110, fill = 'maroon')
r2 = rectangle ( w = 193, h = 193, fill = 'white' , stroke = 'none' )
r2 = r2 | repeat (3, rotate ( 30 ))
c7 = circle (r = 140, fill = 'maroon')
c8 = circle (r = 145, fill = 'white')
c9 = circle (r = 150, fill = 'maroon')
show ( c9 )
show ( c8 )
show ( c7 )
show ( r2 )
show ( c6 )
show ( e2 )
show ( c5 )
show ( c4 )
show ( e1 )
show ( c3 )
show ( c0 )
show ( r1 )
show ( c2 )
show ( c1 )
show ( c )