UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.

26 lines (22 loc) 627 B
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2018 Photon Storm Ltd. * @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License} */ var Contains = require('./Contains'); /** * [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] */ var ContainsPoint = function (rect, point) { return Contains(rect, point.x, point.y); }; module.exports = ContainsPoint;