phaser/src/math/Average.js

30 lines
585 B
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
2019-01-15 16:20:22 +00:00
* @copyright 2019 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
*/
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;