phaser/src/geom/line/Width.js

17 lines
268 B
JavaScript
Raw Normal View History

2017-10-13 13:11:54 +00:00
/**
* [description]
*
* @function Phaser.Geom.Line.Width
* @since 3.0.0
*
* @param {Phaser.Geom.Line} line - [description]
*
* @return {number} [description]
*/
2017-01-04 00:21:42 +00:00
var Width = function (line)
{
return Math.abs(line.x1 - line.x2);
};
module.exports = Width;