mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 15:12:18 +00:00
Fill all description tags for Phaser.Math.Factorial
This commit is contained in:
parent
2c584d3d0e
commit
d7c5d8951a
1 changed files with 4 additions and 4 deletions
|
@ -5,15 +5,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* [description]
|
||||
* Generate a random floating point number between the given maximum and minimum bounds with the minimum bound inclusive, maximum bound exclusive.
|
||||
*
|
||||
* @function Phaser.Math.FloatBetween
|
||||
* @since 3.0.0
|
||||
*
|
||||
* @param {float} min - [description]
|
||||
* @param {float} max - [description]
|
||||
* @param {float} min - The minimum bound of the generated float (inclusive).
|
||||
* @param {float} max - The maximum bound of the generated float (exclusive).
|
||||
*
|
||||
* @return {float} [description]
|
||||
* @return {float} The randomly generated float.
|
||||
*/
|
||||
var FloatBetween = function (min, max)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue