phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.
26 lines (22 loc) • 592 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.Ceil
* @since 3.0.0
*
* @param {number} value - [description]
* @param {float} [epsilon=0.0001] - [description]
*
* @return {number} [description]
*/
var Ceil = function (value, epsilon)
{
if (epsilon === undefined) { epsilon = 0.0001; }
return Math.ceil(value - epsilon);
};
module.exports = Ceil;