
## Circle Shapes
Circle shapes have a position and radius. Circles are solid. You cannot
make a hollow circle using the circle shape.

```js
let circle = new Circle(new Vec2(2, 3), 0.5);
```
