1
0
mirror of https://github.com/nothings/stb synced 2024-12-15 04:22:35 +03:00

Merge branch 'master' of https://github.com/fluffrabbit/stb into work2

This commit is contained in:
Sean Barrett 2020-02-02 08:25:48 -08:00
commit 647906759c

View File

@ -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);