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

17 lines
330 B
JavaScript
Raw Normal View History

2017-10-13 13:11:54 +00:00
/**
* [description]
*
* @function Phaser.Geom.Rectangle.GetAspectRatio
* @since 3.0.0
*
* @param {Phaser.Geom.Rectangle} rect - [description]
*
* @return {number} [description]
*/
2016-12-20 17:07:16 +00:00
var GetAspectRatio = function (rect)
{
return (rect.height === 0) ? NaN : rect.width / rect.height;
};
module.exports = GetAspectRatio;