noise_algorithms 0.1.0
Speed-improved perlin and simplex noise algorithms for 2D.
#NOISE ALGORITHMS!
Speed-improved perlin and simplex noise algorithms for 2D.
Original code example by Stefan Gustavson.
How to make noise:
int seed = 42
Perlin2 perlin = new Perlin2(seed);
int x = 100;
int y = 100;
double noise = perlin.noise(x, y);