f = color(r=255, g=0, b=0) c1 = ellipse(w=200, h=10, fill=f, stroke="yellow",stroke_width=2) | repeat (72,rotate (5)) show(c1) c2 = circle (r=55,fill="red", stroke="none") show(c2) c3 = circle(r=15, fill = "#d5ed00", stroke= "none") show(c3) c4 = rectangle(w=70, h=70, fill= "blue") | repeat(20, rotate(20)| scale(0.9)) show(c4) c5 = circle (r=10,fill="orange", stroke="none") show(c5) x, y =0, 0 r=150 for i in range(5): c= circle (x=x, y=y, r=r,) show(c) r=r-10