| 1252 | } |
| 1253 | |
| 1254 | float Random::RandomFloat() |
| 1255 | { |
| 1256 | // return distribution(engine); |
| 1257 | return (RandomUint() & 0xFFFFFF) / float(1 << 24); |
| 1258 | } |
| 1259 | |
| 1260 | Float2 Random::RandomFloat2() |
| 1261 | { |
nothing calls this directly
no outgoing calls
no test coverage detected