Class SimplexNoise

java.lang.Object
com.ardor3d.math.functions.SimplexNoise

public class SimplexNoise extends Object
Simplex noise in 2D, 3D and 4D

Based on the implementation of Ken Perlin's Simplex Noise done by Stefan Gustavson in 2005. See the paper at http://staffwww.itn.liu.se/~stegu/simplexnoise/simplexnoise.pdf

  • Constructor Details

    • SimplexNoise

      public SimplexNoise()
  • Method Details

    • setPermutations

      public void setPermutations(int[] permutations)
    • noise

      public double noise(double xin, double yin)
    • noise

      public double noise(double xin, double yin, double zin)