UNPKG

arcade-physics

Version:
18 lines 514 B
export default Slope; /** * @author Richard Davey <rich@photonstorm.com> * @copyright 2020 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. */ declare function Slope(line: Phaser.Geom.Line): number; //# sourceMappingURL=Slope.d.ts.map