phaser/src/math/Average.js
2019-05-10 16:15:04 +01:00

29 lines
585 B
JavaScript

/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2019 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculate the mean average of the given values.
*
* @function Phaser.Math.Average
* @since 3.0.0
*
* @param {number[]} values - The values to average.
*
* @return {number} The average value.
*/
var Average = function (values)
{
var sum = 0;
for (var i = 0; i < values.length; i++)
{
sum += (+values[i]);
}
return sum / values.length;
};
module.exports = Average;