phaser/src/math/RandomXY.js

25 lines
478 B
JavaScript
Raw Normal View History

2017-10-06 03:52:41 +00:00
/**
* [description]
*
* @function Phaser.Math.RandomXY
* @since 3.0.0
*
* @param {Phaser.Math.Vector2} vector - [description]
* @param {float} scale - [description]
*
* @return {Phaser.Math.Vector2} [description]
*/
var RandomXY = function (vector, scale)
{
if (scale === undefined) { scale = 1; }
var r = Math.random() * 2 * Math.PI;
vector.x = Math.cos(r) * scale;
vector.y = Math.sin(r) * scale;
return vector;
};
module.exports = RandomXY;