Pookkalam by ajay ps

Code

#derive colors
red = color(r=110,g=1,b=0)
#center piece
inner_pistle_01=circle(r=5,fill="yellow",stroke_width=2)
inner_pistle_02=circle(r=15,fill="orange",stroke_width=2)
inner_pistle_03=circle(r=25,fill="#4d1766",stroke_width=2)
inner_pistle_04=circle(r=35,fill="#ffde08",stroke_width=2)
inner_pistle_square_05 = rectangle(w=60,h=60,fill="#2b110d") | repeat(20,rotate(30))
#middle piece
middle_pistle_square_01 = rectangle(w=60,h=60,fill="#db7e04") | repeat(40,rotate(20))
middle_pistle_ellipse_02 = ellipse(w=90,h=40,fill="yellow") | repeat(70,rotate(20))
middle_pistle_circle_03 = circle(r=58,fill="orange",stroke_width=2)
middle_pistle_small_circle_04 = circle(x=35,y=35,r=3,fill="black")| repeat(8,rotate(45))
middle_pistle_square_05 = rectangle(w=75,h=75,fill=red,stroke="#f28f05",stroke_width=1) | repeat(5,rotate(60))
middle_petals_ellipse_06 = ellipse(w=200,h=40,fill="#2e0330",stroke="#913104",stroke_width=2) | (repeat(6,rotate(30))) | scale(0.7)
middle_pistle_square_07 = rectangle(w=100,h=100,fill="#6930c3") | repeat(4,rotate(70))
middle_pistle_circle_08 = circle(r=75,fill="orange",stroke_width=2)
middle_petals_ellipse_09 = ellipse(w=210,h=20,fill="darkred",stroke="black",stroke_width=2) | repeat(50,rotate(40))
middle_petals_ellipse_10 = ellipse(w=210,h=50,fill="gold") | repeat(50,rotate(50))
middle_pistle_circle_11 = circle(r=107,fill="darkred",stroke_width=2)
#outer layer
outer_circle_01 = circle(x=115,y=0,r=8,fill="orange") | repeat(110,rotate(20))
outer_circle_02 = circle(r=122,fill="#2e0330")
outer_square_03 = rectangle(w=190,h=190,fill="white" ,stroke="none") | repeat(200,rotate(10))
outer_square_05 = rectangle(w=200,h=200,fill="yellow" ,stroke="none") | repeat(200,rotate(10))
outer_square_04 = rectangle(w=205,h=205,fill="black" ,stroke="none") | repeat(300,rotate(5))
outer_square_06 = rectangle(w=215,h=215,fill="#2e0330" ,stroke="none") | repeat(300,rotate(5))
#show
show(outer_square_06,outer_square_04,outer_square_05,outer_square_03,outer_circle_02,outer_circle_01,middle_pistle_circle_11,middle_petals_ellipse_10,middle_petals_ellipse_09,middle_pistle_circle_08,middle_pistle_square_07,middle_petals_ellipse_06,middle_pistle_circle_03,middle_pistle_small_circle_04,middle_pistle_square_05,middle_pistle_ellipse_02,middle_pistle_square_01,inner_pistle_square_05,inner_pistle_04,inner_pistle_03,inner_pistle_02,inner_pistle_01)