Awesome!
The `Circle` is not a public API, it is an implementation detail. The suggested way is to use `circle` function. You could have written the same in a simpler way using:
```
shape = circle(x=30, y=0, r=75) | repeat(40, rotate(10))
show(shape)
```