Skip to content

Instantly share code, notes, and snippets.

@maxxscho
Created May 8, 2015 11:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxxscho/68f3ea44bff61fdc5464 to your computer and use it in GitHub Desktop.
Save maxxscho/68f3ea44bff61fdc5464 to your computer and use it in GitHub Desktop.
Generate random float between two floats
#define ARC4RANDOM_MAX 0x100000000
double val = ((double)arc4random() / ARC4RANDOM_MAX)
* (maxRange - minRange)
+ minRange;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment