phaser/src/geom/line/Width.js
2018-01-09 21:43:56 +00:00

16 lines
268 B
JavaScript

/**
* [description]
*
* @function Phaser.Geom.Line.Width
* @since 3.0.0
*
* @param {Phaser.Geom.Line} line - [description]
*
* @return {number} [description]
*/
var Width = function (line)
{
return Math.abs(line.x1 - line.x2);
};
module.exports = Width;