mirror of
https://github.com/photonstorm/phaser
synced 2024-12-25 20:43:26 +00:00
9 lines
169 B
JavaScript
9 lines
169 B
JavaScript
|
var Contains = require('./Contains');
|
||
|
|
||
|
var ContainsPoint = function (circle, point)
|
||
|
{
|
||
|
return Contains(circle, point.x, point.y);
|
||
|
};
|
||
|
|
||
|
module.exports = ContainsPoint;
|