Example #1
0
 /// <summary>
 /// Returns a random double between the range of 0.0 and 1.0 based on
 /// the provided X and Y position, and the specified modifier.
 /// </summary>
 public double GetRandomDouble(long x, long y, long z, long modifier = 0)
 {
     return(AlgorithmUtility.GetRandomDouble(this.Seed, x, y, z, modifier));
 }