2017-10-13 13:11:54 +00:00
|
|
|
var Point = require('../point/Point');
|
|
|
|
|
2016-12-20 17:07:16 +00:00
|
|
|
// The size of the Rectangle object, expressed as a Point object
|
|
|
|
// with the values of the width and height properties.
|
|
|
|
|
2017-10-13 13:11:54 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @function Phaser.Geom.Rectangle.GetSize
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {Phaser.Geom.Rectangle} rect - [description]
|
|
|
|
* @param {Phaser.Geom.Point|object} [out] - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.Geom.Point|object} [description]
|
|
|
|
*/
|
2016-12-20 17:07:16 +00:00
|
|
|
var GetSize = function (rect, out)
|
|
|
|
{
|
2017-10-13 13:11:54 +00:00
|
|
|
if (out === undefined) { out = new Point(); }
|
2016-12-20 17:07:16 +00:00
|
|
|
|
|
|
|
out.x = rect.width;
|
|
|
|
out.y = rect.height;
|
|
|
|
|
|
|
|
return out;
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = GetSize;
|