phaser/src/math/Difference.js
2022-02-28 14:29:51 +00:00

23 lines
592 B
JavaScript

/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2022 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculates the positive difference of two given numbers.
*
* @function Phaser.Math.Difference
* @since 3.0.0
*
* @param {number} a - The first number in the calculation.
* @param {number} b - The second number in the calculation.
*
* @return {number} The positive difference of the two given numbers.
*/
var Difference = function (a, b)
{
return Math.abs(a - b);
};
module.exports = Difference;