bg = rectangle(w=300,h=300,fill="white") r1 = ellipse(w=150, h=10, fill="yellow", stroke="teal") | repeat(20,rotate(18)) | scale(0.5) c1 = circle(r=70, fill="springgreen",stroke="red", stroke_width=6) r2 = rectangle(stroke="gold", w=10, h=10, stroke_width=0.7) | repeat(6, rotate(60)) r3 = rectangle(stroke="black", w=10, h=10, stroke_width=0.8) | repeat(6, rotate(60)) r4 = r3+r2 | scale(10) | rotate(45) c2 = c1 | scale(0.5) show(bg+c1+c2+r4+r2+r1 | scale(1.7))