Beispiel #1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="point"></param>
 /// <returns></returns>
 public double ValueAt(Vec3d point)
 {
     ToNoiseSpace(ref point);
     return(SimplexNoise.ValueAt(point.X, point.Y, point.Z));
 }
Beispiel #2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="point"></param>
 /// <returns></returns>
 public double ValueAt(Vec3d point)
 {
     return(SimplexNoise.ValueAt(point.X * ScaleX, point.Y * ScaleY, point.Z * ScaleZ));
 }