randDouble static method

double randDouble(
  1. double min,
  2. double max
)

Implementation

static double randDouble(double min, double max) {
  return _rnd.nextDouble() * (max - min) + min;
}