Code
c1=circle(r=150,fill="#ff0000")
show(c1)
e1=ellipse(h=100,w=300,fill="#ffff80",stroke="none")|repeat(8,rotate(45))
show(e1)
c2=circle(r=100)
show(c2)
c3 = circle(x=0, y=112.5, r=12.5,fill="#ff66a3")|repeat(19,rotate(20))
show(c3)
p1=point(x=25,y=70)
p2=point(x=-25,y=70)
p3=point(x=0,y=110)
p4=point(x=0,y=30)
s = polygon([p1,p4,p2,p3],fill=color(r=255,g=255,b=255),stroke="Green",stroke_width=3) | repeat(8,rotate(45))
show(s)
c4 = circle(x=25, y=25,r=20, fill="orange") | repeat(6,rotate(60))
show(c4)
c5=circle(r=20,fill="#cc0099")
show(c5)