mirror of
https://github.com/photonstorm/phaser
synced 2024-12-24 12:03:36 +00:00
24 lines
478 B
JavaScript
24 lines
478 B
JavaScript
/**
|
|
* [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;
|