mirror of
https://github.com/photonstorm/phaser
synced 2024-12-25 12:33:38 +00:00
20 lines
424 B
JavaScript
20 lines
424 B
JavaScript
/**
|
|
* [description]
|
|
*
|
|
* @function Phaser.Math.SmootherStep
|
|
* @since 3.0.0
|
|
*
|
|
* @param {number} x - [description]
|
|
* @param {number} min - [description]
|
|
* @param {number} max - [description]
|
|
*
|
|
* @return {number} [description]
|
|
*/
|
|
var SmootherStep = function (x, min, max)
|
|
{
|
|
x = Math.max(0, Math.min(1, (x - min) / (max - min)));
|
|
|
|
return x * x * x * (x * (x * 6 - 15) + 10);
|
|
};
|
|
|
|
module.exports = SmootherStep;
|