mirror of
https://github.com/photonstorm/phaser
synced 2024-12-18 09:03:29 +00:00
7 lines
112 B
JavaScript
7 lines
112 B
JavaScript
|
var Slope = function (line)
|
||
|
{
|
||
|
return (line.y2 - line.y1) / (line.x2 - line.x1);
|
||
|
};
|
||
|
|
||
|
module.exports = Slope;
|