This algorithm was snagged off usenet in the 80's. More...
#include <Random.h>
Public Member Functions | |
Random (int seed) | |
Random (const Random &rnd) | |
Random & | operator= (const Random &rnd) |
int | Next () |
int | Next (int max) |
int | Next (int min, int max) |
void | NextBytes (byte *data, int len) |
int | NextInt () |
double | NextDouble () |
Protected Attributes | |
uint32 | combo_x |
uint32 | combo_y |
uint32 | combo_z |
uint32 | combo_v |
This algorithm was snagged off usenet in the 80's.
Definition at line 32 of file Random.h.