Skip to content

mattdesl/point-circle-collision

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

point-circle-collision

stable

Performs a point-circle collision test, returning true if they intersect.

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:

Usage

NPM

collide(point, circle, radius)

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.

License

MIT, see LICENSE.md for details.

About

test for point-circle intersection

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors