forked from phaserjs/phaser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRandom.js
More file actions
32 lines (27 loc) · 887 Bytes
/
Copy pathRandom.js
File metadata and controls
32 lines (27 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var Point = require('../point/Point');
/**
* Returns a random point within a Rectangle.
*
* @function Phaser.Geom.Rectangle.Random
* @since 3.0.0
*
* @generic {Phaser.Geom.Point} O - [out,$return]
*
* @param {Phaser.Geom.Rectangle} rect - The Rectangle to return a point from.
* @param {Phaser.Geom.Point} out - The object to update with the point's coordinates.
*
* @return {Phaser.Geom.Point} The modified `out` object, or a new Point if none was provided.
*/
var Random = function (rect, out)
{
if (out === undefined) { out = new Point(); }
out.x = rect.x + (Math.random() * rect.width);
out.y = rect.y + (Math.random() * rect.height);
return out;
};
module.exports = Random;