2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2017-10-13 13:11:54 +00:00
|
|
|
// Scales the width and height of this Rectangle by the given amounts.
|
|
|
|
|
2016-12-20 17:07:16 +00:00
|
|
|
/**
|
2017-10-13 13:11:54 +00:00
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @function Phaser.Geom.Rectangle.Scale
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-03-27 13:27:08 +00:00
|
|
|
* @generic {Phaser.Geom.Rectangle} O - [rect,$return]
|
|
|
|
*
|
2017-10-13 13:11:54 +00:00
|
|
|
* @param {Phaser.Geom.Rectangle} rect - [description]
|
|
|
|
* @param {number} x - [description]
|
|
|
|
* @param {number} y - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.Geom.Rectangle} [description]
|
|
|
|
*/
|
2016-12-20 17:07:16 +00:00
|
|
|
var Scale = function (rect, x, y)
|
|
|
|
{
|
|
|
|
if (y === undefined) { y = x; }
|
|
|
|
|
|
|
|
rect.width *= x;
|
|
|
|
rect.height *= y;
|
|
|
|
|
|
|
|
return rect;
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Scale;
|