Returns the next pseudo-random float value using the specified random number object.
Syntax
nextFloat( random )
random.nextFloat( )
Parameters
random
|
the random object to use.
|
Returns
float
|
the next pseudo-random float value.
|
Example
rnd = Random( )
fValue = rnd.nextFloat( )
|