From a82e7424d20623c7fdf64051e5c3bf62b1f0ae80 Mon Sep 17 00:00:00 2001 From: fluffrabbit Date: Sat, 3 Aug 2019 19:15:41 -0600 Subject: [PATCH] extern stb_perlin_noise3_seed --- stb_perlin.h | 1 + 1 file changed, 1 insertion(+) diff --git a/stb_perlin.h b/stb_perlin.h index d582d5a..39d2cc9 100644 --- a/stb_perlin.h +++ b/stb_perlin.h @@ -78,6 +78,7 @@ extern "C" { #endif extern float stb_perlin_noise3(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap); +extern float stb_perlin_noise3_seed(float x, float y, float z, int x_wrap, int y_wrap, int z_wrap, int seed); extern float stb_perlin_ridge_noise3(float x, float y, float z, float lacunarity, float gain, float offset, int octaves); extern float stb_perlin_fbm_noise3(float x, float y, float z, float lacunarity, float gain, int octaves); extern float stb_perlin_turbulence_noise3(float x, float y, float z, float lacunarity, float gain, int octaves);