intersects
Version:
a simple collection of 2d collision/intersects functions, supporting points, circles, circle outlines (circumference), lines, axis-aligned boxes, and polygons (convex)
18 lines (16 loc) • 380 B
JavaScript
/**
* circle-point collision
* @param {number} x1 center of circle
* @param {number} y1 center of circle
* @param {radius} r1 radius of circle
* @param {number} x2 point
* @param {number} y2 point
* @return {boolean}
*/
module.exports = function circlePoint(x1, y1, r1, x2, y2)
{
var x = x2 - x1
var y = y2 - y1
return x * x + y * y <= r1 * r1
}