2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2019-01-15 16:20:22 +00:00
|
|
|
* @copyright 2019 Photon Storm Ltd.
|
2018-02-12 16:01:20 +00:00
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2017-10-06 03:52:41 +00:00
|
|
|
/**
|
2018-05-24 17:48:12 +00:00
|
|
|
* Calculate a smooth interpolation percentage of `x` between `min` and `max`.
|
2018-05-24 17:11:18 +00:00
|
|
|
*
|
2018-05-24 16:03:42 +00:00
|
|
|
* The function receives the number `x` as an argument and returns 0 if `x` is less than or equal to the left edge,
|
|
|
|
* 1 if `x` is greater than or equal to the right edge, and smoothly interpolates, using a Hermite polynomial,
|
|
|
|
* between 0 and 1 otherwise.
|
2018-05-23 09:46:16 +00:00
|
|
|
*
|
2017-10-06 03:52:41 +00:00
|
|
|
* @function Phaser.Math.SmoothStep
|
|
|
|
* @since 3.0.0
|
2018-05-24 17:11:18 +00:00
|
|
|
* @see {@link https://en.wikipedia.org/wiki/Smoothstep}
|
2017-10-06 03:52:41 +00:00
|
|
|
*
|
2018-05-24 16:03:42 +00:00
|
|
|
* @param {number} x - The input value.
|
|
|
|
* @param {number} min - The minimum value, also known as the 'left edge', assumed smaller than the 'right edge'.
|
|
|
|
* @param {number} max - The maximum value, also known as the 'right edge', assumed greater than the 'left edge'.
|
2017-10-06 03:52:41 +00:00
|
|
|
*
|
2018-05-24 17:48:12 +00:00
|
|
|
* @return {number} The percentage of interpolation, between 0 and 1.
|
2017-10-06 03:52:41 +00:00
|
|
|
*/
|
2016-12-07 17:16:59 +00:00
|
|
|
var SmoothStep = function (x, min, max)
|
|
|
|
{
|
2018-05-24 16:03:42 +00:00
|
|
|
if (x <= min)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2016-12-07 17:16:59 +00:00
|
|
|
|
2018-05-24 16:03:42 +00:00
|
|
|
if (x >= max)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
x = (x - min) / (max - min);
|
|
|
|
|
2018-05-24 17:11:18 +00:00
|
|
|
return x * x * (3 - 2 * x);
|
2016-12-07 17:16:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = SmoothStep;
|