phaser/src/geom/line/Slope.js

17 lines
282 B
JavaScript
Raw Normal View History

2017-10-13 13:11:54 +00:00
/**
* [description]
*
* @function Phaser.Geom.Line.Slope
* @since 3.0.0
*
* @param {Phaser.Geom.Line} line - [description]
*
* @return {number} [description]
*/
2017-01-04 00:21:42 +00:00
var Slope = function (line)
{
return (line.y2 - line.y1) / (line.x2 - line.x1);
};
module.exports = Slope;