2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2019-01-15 16:20:22 +00:00
|
|
|
* @copyright 2019 Photon Storm Ltd.
|
2019-05-10 15:15:04 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
2018-02-12 16:01:20 +00:00
|
|
|
*/
|
|
|
|
|
2017-10-13 13:11:54 +00:00
|
|
|
/**
|
2018-06-21 17:13:46 +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
|
|
|
|
*
|
2018-06-21 17:13:46 +00:00
|
|
|
* @param {Phaser.Geom.Line} line - The line to calculate the width of.
|
2017-10-13 13:11:54 +00:00
|
|
|
*
|
2018-06-21 17:13:46 +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;
|