Function randomPoint

Returns a random point within a circle.

By default creates a uniform distribution.

const pt = randomPoint({radius: 5});
const pt = randomPoint({radius: 5, x: 10, y: 20});
```'

Generate points with a gaussian distribution
```js
const pt = randomPoint(circle, {
randomSource: Random.gaussian
})