phaser/src/math/Difference.js
2024-02-19 17:12:24 +00:00

23 lines
592 B
JavaScript

/**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2024 Phaser Studio Inc.
* @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;