p1 = point(x=0, y=0) p2 = point(x=125, y=0) p3 = point(x=0, y=125) s = polygon([p1, p2, p3], fill="yellow", stroke="#FF0000", stroke_width=4) | repeat(20, rotate(20)) c = circle(r=150, fill="purple") d = circle(r=6, x=10, y=130, fill="white", stroke="white") | repeat (20, rotate(20)) f = circle(r=3, x=10, y=130, fill="#FF0000", stroke="#FF0000") | repeat (20, rotate(20)) e = circle(r=2, x=10, y=145, fill="white", stroke="white") | repeat (72, rotate(5)) show(c,s,d,f,e)