List of utility methods to do Random Double Create
double | getRandom(double from, double to) Returns random get to to return from + (int) (Math.random() * ((to - from) + 1)); |
double | randomDouble() Returns a random double in the range 0.0 (inclusive) and 1.0 (exclusive). return _randomSeq.nextDouble();
|