mirror of
https://github.com/photonstorm/phaser
synced 2024-12-18 00:53:42 +00:00
16 lines
268 B
JavaScript
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;
|