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 02:05:01 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @function Phaser.Math.CatmullRom
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {number} t - [description]
|
|
|
|
* @param {number} p0 - [description]
|
|
|
|
* @param {number} p1 - [description]
|
|
|
|
* @param {number} p2 - [description]
|
|
|
|
* @param {number} p3 - [description]
|
|
|
|
*
|
|
|
|
* @return {number} [description]
|
|
|
|
*/
|
2017-09-21 01:30:35 +00:00
|
|
|
var CatmullRom = function (t, p0, p1, p2, p3)
|
2016-12-07 17:16:59 +00:00
|
|
|
{
|
2017-09-21 01:30:35 +00:00
|
|
|
var v0 = (p2 - p0) * 0.5;
|
|
|
|
var v1 = (p3 - p1) * 0.5;
|
|
|
|
var t2 = t * t;
|
|
|
|
var t3 = t * t2;
|
2016-12-07 17:16:59 +00:00
|
|
|
|
|
|
|
return (2 * p1 - 2 * p2 + v0 + v1) * t3 + (-3 * p1 + 3 * p2 - 2 * v0 - v1) * t2 + v0 * t + p1;
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = CatmullRom;
|