mirror of
https://github.com/photonstorm/phaser
synced 2024-12-18 00:53:42 +00:00
16 lines
282 B
JavaScript
16 lines
282 B
JavaScript
/**
|
|
* [description]
|
|
*
|
|
* @function Phaser.Geom.Line.Slope
|
|
* @since 3.0.0
|
|
*
|
|
* @param {Phaser.Geom.Line} line - [description]
|
|
*
|
|
* @return {number} [description]
|
|
*/
|
|
var Slope = function (line)
|
|
{
|
|
return (line.y2 - line.y1) / (line.x2 - line.x1);
|
|
};
|
|
|
|
module.exports = Slope;
|