mirror of
https://github.com/photonstorm/phaser
synced 2024-12-25 04:23:30 +00:00
23 lines
489 B
JavaScript
23 lines
489 B
JavaScript
/**
|
|
* [description]
|
|
*
|
|
* @function Phaser.Math.RoundTo
|
|
* @since 3.0.0
|
|
*
|
|
* @param {number} value - [description]
|
|
* @param {integer} [place=0] - [description]
|
|
* @param {integer} [base=10] - [description]
|
|
*
|
|
* @return {number} [description]
|
|
*/
|
|
var RoundTo = function (value, place, base)
|
|
{
|
|
if (place === undefined) { place = 0; }
|
|
if (base === undefined) { base = 10; }
|
|
|
|
var p = Math.pow(base, -place);
|
|
|
|
return Math.round(value * p) / p;
|
|
};
|
|
|
|
module.exports = RoundTo;
|