Pookkalam by Akhil B Xavier

Code

c = circle(r = 100,fill = 'purple')
cir = circle(r = 150,fill = 'yellow')

c1 = circle(r = 42, x= -105,fill = 'pink' )
c2 = circle(r = 30, y = 0, x= -100,fill = 'yellow')
c3 = circle(r = 20, y = 0, x= -95,fill = 'red')


side = c1+c2+c3

shape = side | repeat(9, rotate(45))

out = ellipse(x=0, y=0, h= 60, w=300,fill = "tomato") | repeat(20, rotate(10)|scale(0.9))
out2 = out | repeat(36, rotate(10))

cir2 = circle(r = 50, fill = "red")







cir3 = circle(r = 50, fill= "orange")

shape = ellipse(x=0, y=0, h= 20, w=100,fill = "tomato") | repeat(20, rotate(10)|scale(0.9))
s2 = shape | repeat(36, rotate(10))


show(cir)
show(out2)
show(shape)
show(c)
show(cir2)

show(cir3)





c1= circle (x = -70, y = 0, r= 25, fill = "yellow")
sq1 = rectangle (x = -70, y = 0, h = 50, w=50, fill="red") 
sq2 = rectangle (x = -70, y = 0, h = 25, w=25, fill="purple" )
c2= circle (x = -70, y = 0, r= 10, fill = "yellow")
sq = sq1+c1+sq2+c2 
# show(sq)

shape1 = circle(x=80, y=0, r=10, stroke="pink", stroke_width = 9) | repeat(12, rotate(30))
show(shape1)

shape = sq | repeat(6, rotate(60))
show(shape)



show(s2)