mirror of
https://github.com/photonstorm/phaser
synced 2024-12-17 16:43:30 +00:00
22 lines
500 B
JavaScript
22 lines
500 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2019 Photon Storm Ltd.
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* Calculate the width of the given line.
|
|
*
|
|
* @function Phaser.Geom.Line.Width
|
|
* @since 3.0.0
|
|
*
|
|
* @param {Phaser.Geom.Line} line - The line to calculate the width of.
|
|
*
|
|
* @return {number} The width of the line.
|
|
*/
|
|
var Width = function (line)
|
|
{
|
|
return Math.abs(line.x1 - line.x2);
|
|
};
|
|
|
|
module.exports = Width;
|