phaser/src/math/CeilTo.js
2018-02-12 16:01:21 +00:00

29 lines
686 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.CeilTo
* @since 3.0.0
*
* @param {number} value - [description]
* @param {number} [place=0] - [description]
* @param {integer} [base=10] - [description]
*
* @return {number} [description]
*/
var CeilTo = function (value, place, base)
{
if (place === undefined) { place = 0; }
if (base === undefined) { base = 10; }
var p = Math.pow(base, -place);
return Math.ceil(value * p) / p;
};
module.exports = CeilTo;