mirror of
https://github.com/photonstorm/phaser
synced 2025-01-25 19:35:15 +00:00
22 lines
519 B
JavaScript
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;
|