mirror of
https://github.com/photonstorm/phaser
synced 2024-12-18 00:53:42 +00:00
7 lines
98 B
JavaScript
7 lines
98 B
JavaScript
|
var Width = function (line)
|
||
|
{
|
||
|
return Math.abs(line.x1 - line.x2);
|
||
|
};
|
||
|
|
||
|
module.exports = Width;
|