c = circle(r=60,fill="red") r = rectangle(w=100,h=100, fill="green")|repeat(5,rotate(60)) r2= rectangle(w=50,h=50,fill="purple")|repeat(12,rotate(30)) r3= rectangle(w=25,h=25,fill="cyan")|repeat(5,rotate(60)) c3= circle(r=12.5,fill="orange") r4= rectangle(w=12.5,h=12.5,fill="pink")|repeat(5,rotate(60)) c4=circle(r=6.25,fill="blue") c5=circle(r=3,fill="red") mc=circle(r=72,fill="yellow") shapes= mc+r+c+r2+r3+c3+r4+c4+c5 show(shapes)