phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.
27 lines (23 loc) • 628 B
JavaScript
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2018 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
/**
* [description]
*
* @function Phaser.Math.Fuzzy.Equal
* @since 3.0.0
*
* @param {number} a - [description]
* @param {number} b - [description]
* @param {float} [epsilon=0.0001] - [description]
*
* @return {boolean} [description]
*/
var Equal = function (a, b, epsilon)
{
if (epsilon === undefined) { epsilon = 0.0001; }
return Math.abs(a - b) < epsilon;
};
module.exports = Equal;