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

7 lines
141 B
JavaScript
Raw Normal View History

2016-12-20 17:07:16 +00:00
var GetAspectRatio = function (rect)
{
return (rect.height === 0) ? NaN : rect.width / rect.height;
};
module.exports = GetAspectRatio;