phaser/src/geom/line/Width.js

23 lines
526 B
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2018 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
2017-10-13 13:11:54 +00:00
/**
* Calculate the width of the given line.
2017-10-13 13:11:54 +00:00
*
* @function Phaser.Geom.Line.Width
* @since 3.0.0
*
* @param {Phaser.Geom.Line} line - The line to calculate the width of.
2017-10-13 13:11:54 +00:00
*
* @return {number} The width of the line.
2017-10-13 13:11:54 +00:00
*/
2017-01-04 00:21:42 +00:00
var Width = function (line)
{
return Math.abs(line.x1 - line.x2);
};
module.exports = Width;