phaser/src/geom/line/Slope.js
2023-01-02 17:36:27 +00:00

22 lines
519 B
JavaScript

/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2013-2023 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculate the slope of the given line.
*
* @function Phaser.Geom.Line.Slope
* @since 3.0.0
*
* @param {Phaser.Geom.Line} line - The line to calculate the slope of.
*
* @return {number} The slope of the line.
*/
var Slope = function (line)
{
return (line.y2 - line.y1) / (line.x2 - line.x1);
};
module.exports = Slope;