Skip to content

Instantly share code, notes, and snippets.

@willread
Created August 4, 2013 13:02
Show Gist options
  • Save willread/6150274 to your computer and use it in GitHub Desktop.
Save willread/6150274 to your computer and use it in GitHub Desktop.
Magical pseudo-random number generator
private float seed = 1.0f;
float PseudoRandom(){
seed = (seed * 9301 + 49297) % 233280;
return seed / 233280;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment