2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2022-02-28 14:29:51 +00:00
|
|
|
* @copyright 2022 Photon Storm Ltd.
|
2019-05-10 15:15:04 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
2018-02-12 16:01:20 +00:00
|
|
|
*/
|
|
|
|
|
2018-01-26 06:19:27 +00:00
|
|
|
/**
|
2018-05-31 15:29:29 +00:00
|
|
|
* Generate a series of sine and cosine values.
|
2018-01-26 06:19:27 +00:00
|
|
|
*
|
|
|
|
* @function Phaser.Math.SinCosTableGenerator
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-05-31 15:29:29 +00:00
|
|
|
* @param {number} length - The number of values to generate.
|
|
|
|
* @param {number} [sinAmp=1] - The sine value amplitude.
|
|
|
|
* @param {number} [cosAmp=1] - The cosine value amplitude.
|
|
|
|
* @param {number} [frequency=1] - The frequency of the values.
|
2018-01-26 06:19:27 +00:00
|
|
|
*
|
2019-05-09 11:32:37 +00:00
|
|
|
* @return {Phaser.Types.Math.SinCosTable} The generated values.
|
2018-01-26 06:19:27 +00:00
|
|
|
*/
|
2016-12-07 17:16:59 +00:00
|
|
|
var SinCosTableGenerator = function (length, sinAmp, cosAmp, frequency)
|
|
|
|
{
|
|
|
|
if (sinAmp === undefined) { sinAmp = 1; }
|
|
|
|
if (cosAmp === undefined) { cosAmp = 1; }
|
|
|
|
if (frequency === undefined) { frequency = 1; }
|
|
|
|
|
|
|
|
frequency *= Math.PI / length;
|
|
|
|
|
|
|
|
var cos = [];
|
|
|
|
var sin = [];
|
|
|
|
|
|
|
|
for (var c = 0; c < length; c++)
|
|
|
|
{
|
|
|
|
cosAmp -= sinAmp * frequency;
|
|
|
|
sinAmp += cosAmp * frequency;
|
|
|
|
|
|
|
|
cos[c] = cosAmp;
|
|
|
|
sin[c] = sinAmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
sin: sin,
|
|
|
|
cos: cos,
|
|
|
|
length: length
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = SinCosTableGenerator;
|