Generates a normally distributed random float number between 0.0 inclusively and 1.0 exclusively. @return float a random float number between [0.0 and 1.0) @see #nextDouble
()
| 148 | * @see #nextDouble |
| 149 | */ |
| 150 | public float nextFloat() { |
| 151 | return (next(24) / 16777216f); |
| 152 | } |
| 153 | |
| 154 | /** |
| 155 | * Pseudo-randomly generates (approximately) a normally distributed |