phaser/v3/src/math/SmootherStep.js

21 lines
424 B
JavaScript
Raw Normal View History

2017-10-06 03:52:41 +00:00
/**
* [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;