Nice! Instead of creating so many circles with consecutive rotations, you could have used `repeat`.
```
s1 = circle(r=100)
fill = color(r=300,g=100,b=0,a=0.3)
s2 = circle (x=0,y=100, r=100, fill=fill) | repeat(6, rotate(60))
show(s1, s2)
```
Nice! Instead of creating so many circles with consecutive rotations, you could have used `repeat`.
```
s1 = circle(r=100)
fill = color(r=300,g=100,b=0,a=0.3)
s2 = circle (x=0,y=100, r=100, fill=fill) | repeat(6, rotate(60))
show(s1, s2)
```