2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2017-10-06 03:52:41 +00:00
|
|
|
/**
|
2018-05-23 09:46:16 +00:00
|
|
|
* Smoothly interpolate between two values.
|
|
|
|
*
|
|
|
|
* Computes a smooth step interpolation between `min` and `max` by `x`.
|
2017-10-06 03:52:41 +00:00
|
|
|
*
|
|
|
|
* @function Phaser.Math.SmoothStep
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-05-23 09:46:16 +00:00
|
|
|
* @param {number} x - The percentage of interpolation, between 0 and 1.
|
|
|
|
* @param {number} min - The minimum value.
|
|
|
|
* @param {number} max - The maximum value.
|
2017-10-06 03:52:41 +00:00
|
|
|
*
|
2018-05-23 09:46:16 +00:00
|
|
|
* @return {number} The smoothly interpolated value.
|
2017-10-06 03:52:41 +00:00
|
|
|
*/
|
2016-12-07 17:16:59 +00:00
|
|
|
var SmoothStep = function (x, min, max)
|
|
|
|
{
|
|
|
|
x = Math.max(0, Math.min(1, (x - min) / (max - min)));
|
|
|
|
|
|
|
|
return x * x * (3 - 2 * x);
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = SmoothStep;
|