f = color(r=255, g=0, b=0) c1 = ellipse(w=200, h=10, fill=f, stroke = "green", stroke_width = 2) | repeat(72, rotate(5)) c2 = circle(r=100, fill = "yellow") c3 = circle(r=50, fill = "FFFF66", stroke = "none") c4 = ellipse(w=65, h=65, fill = "white") | repeat(20, rotate(20) | scale(0.9)) c5 = rectangle (w=200, h=200, fill = "#FF6666", stroke = "brown", stroke_width = 3) | repeat (200, rotate(100)) c6 = circle(r=150, fill = "#003300", stroke= "none") show(c6, c5, c2, c1, c3, c4)