phaser/v3/src/geom/rectangle/OffsetPoint.js

21 lines
394 B
JavaScript
Raw Normal View History

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