pub fn gen<R>(rng: R, value: f64, randomness: f64) -> f64where
R: Rng,Expand description
Generates a raw gaussian value between [0.0, 1.0) whose distribution’s mean is at value with
the given amount of randomness between [0.0, 1.0).
Panics if the value is less than 0.0 or greater than or equal to 1.0.
Panics if the randomness is less than 0.0 or greater than or equal to 1.0.