mirror of
https://github.com/photonstorm/phaser
synced 2024-12-28 05:53:49 +00:00
15 lines
239 B
JavaScript
15 lines
239 B
JavaScript
|
/**
|
||
|
* Scales the width and height of this Rectangle by the given amounts.
|
||
|
*/
|
||
|
var Scale = function (rect, x, y)
|
||
|
{
|
||
|
if (y === undefined) { y = x; }
|
||
|
|
||
|
rect.width *= x;
|
||
|
rect.height *= y;
|
||
|
|
||
|
return rect;
|
||
|
};
|
||
|
|
||
|
module.exports = Scale;
|