mirror of
https://github.com/photonstorm/phaser
synced 2025-01-12 05:08:54 +00:00
23 lines
539 B
JavaScript
23 lines
539 B
JavaScript
|
var Clamp = require('./Clamp');
|
||
|
|
||
|
/**
|
||
|
* Return a value based on the range between `min` and `max` and the percentage given.
|
||
|
*
|
||
|
* @function Phaser.Math.FromPercent
|
||
|
* @since 3.0.0
|
||
|
*
|
||
|
* @param {float} percent - A value between 0 and 1 representing the percentage.
|
||
|
* @param {number} min - [description]
|
||
|
* @param {number} [max] - [description]
|
||
|
*
|
||
|
* @return {number} [description]
|
||
|
*/
|
||
|
var FromPercent = function (percent, min, max)
|
||
|
{
|
||
|
percent = Clamp(percent, 0, 1);
|
||
|
|
||
|
return (max - min) * percent;
|
||
|
};
|
||
|
|
||
|
module.exports = FromPercent;
|