s1 = circle(x=50, y=0, r=50, stroke="tomato", stroke_width=5,) | repeat(6, rotate(60)) show(s1) shape = rectangle(w=200, h=200, stroke="yellow", stroke_width=6) | repeat(9, rotate(10)) show(shape) s = rectangle(x=100, y=0, w=25, h=25) s = circle(x=140, y=0, r=10, stroke="lightblue", stroke_width=4) s1 = s | repeat(20, scale(0.85)) s2 = s1 | repeat(36, rotate(10)) show(s2) c1=circle(r=150) c2=circle(r=100) show(c1, c2)