An efficient library to simulate Perlin and Simplex Noise as used in Minecraft.
We don't recommend using that lib directly if you don't know how Noise generation works, please prefer using TerrainUtils
JRandrand = newJRand(1L);
OctaveSimplexNoiseSamplersimplexSampler = newOctaveSimplexNoiseSampler(rand, 2);
doublevalue=simplexSampler.sample(0, 0);JRandrand = newJRand(1L);
OctavePerlinNoiseSamplerperlinSampler = newOctavePerlinNoiseSampler(rand, Arrays.stream(newint[] {1, 2}));
doublevalue=perlinSampler.sample(0, 0, 0);Licensed under MIT
Maintained by Neil and KaptainWutax.
NOT OFFICIAL MINECRAFT PRODUCT. NOT APPROVED BY OR ASSOCIATED WITH MOJANG.