phaser/src/math/Average.js

30 lines
611 B
JavaScript
Raw Normal View History

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
/**
* Calculate the mean average of the given values.
2017-10-06 02:05:01 +00:00
*
* @function Phaser.Math.Average
* @since 3.0.0
*
* @param {number[]} values - The values to average.
2017-10-06 02:05:01 +00:00
*
* @return {number} The average value.
2017-10-06 02:05:01 +00:00
*/
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;