phaser/src/geom/rectangle/ContainsPoint.js

20 lines
406 B
JavaScript
Raw Normal View History

2016-12-29 00:17:20 +00:00
var Contains = require('./Contains');
2017-10-13 13:11:54 +00:00
/**
* [description]
*
* @function Phaser.Geom.Rectangle.ContainsPoint
* @since 3.0.0
*
* @param {Phaser.Geom.Rectangle} rect - [description]
* @param {Phaser.Geom.Point} point - [description]
*
* @return {boolean} [description]
*/
2016-12-29 00:17:20 +00:00
var ContainsPoint = function (rect, point)
{
return Contains(rect, point.x, point.y);
};
module.exports = ContainsPoint;