test for collision with a circle and point
npm install point-circle-collisionPerforms a point-circle collision test, returning true if they intersect.
``js
var collide = require('point-circle-collision')
var circle = [5, 5],
radius = 25,
point = [5, 6]
var hit = collide(point, circle, radius)
console.log(hit)
``
You may also be interested in:
- point-in-triangle
- line-circle-collision
- triangle-circle-collision
- is-clockwise

Performs a collision test with the given parameters. Returns true if collision occurred.
Point and circle are expected to be 2D vectors in the form of an array.
If the radius is zero, this test will return false.
MIT, see LICENSE.md for details.