Package heronarts.lx.utils
Class Noise
java.lang.Object
heronarts.lx.utils.Noise
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic float
stb_perlin_fbm_noise3
(float x, float y, float z, float lacunarity, float gain, int octaves) static float
stb_perlin_noise3
(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap) static float
stb_perlin_noise3_seed
(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap, int seed) static float
stb_perlin_noise3_wrap_nonpow2
(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap, int seed) static float
stb_perlin_ridge_noise3
(float x, float y, float z, float lacunarity, float gain, float offset, int octaves) static float
stb_perlin_turbulence_noise3
(float x, float y, float z, float lacunarity, float gain, int octaves)
-
Constructor Details
-
Noise
public Noise()
-
-
Method Details
-
stb_perlin_noise3
public static float stb_perlin_noise3(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap) -
stb_perlin_noise3_seed
public static float stb_perlin_noise3_seed(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap, int seed) -
stb_perlin_ridge_noise3
public static float stb_perlin_ridge_noise3(float x, float y, float z, float lacunarity, float gain, float offset, int octaves) -
stb_perlin_fbm_noise3
public static float stb_perlin_fbm_noise3(float x, float y, float z, float lacunarity, float gain, int octaves) -
stb_perlin_turbulence_noise3
public static float stb_perlin_turbulence_noise3(float x, float y, float z, float lacunarity, float gain, int octaves) -
stb_perlin_noise3_wrap_nonpow2
public static float stb_perlin_noise3_wrap_nonpow2(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap, int seed)
-