diff options
| author | Ray <[email protected]> | 2022-09-17 13:39:49 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2022-09-17 13:39:49 +0200 |
| commit | cb9b8f73c08e720ef6b8762192c4efe9521a1185 (patch) | |
| tree | b60382af7615fe0725a78cd718c86741917cd124 /src/raylib.h | |
| parent | eaa0b9102b3751617b9856d3a60eed26354c4140 (diff) | |
| download | raylib-cb9b8f73c08e720ef6b8762192c4efe9521a1185.tar.gz raylib-cb9b8f73c08e720ef6b8762192c4efe9521a1185.zip | |
ADDED: `GenImagePerlinNoise()`
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h index 693da140..ac5d6e6a 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1241,6 +1241,7 @@ RLAPI Image GenImageGradientH(int width, int height, Color left, Color right); RLAPI Image GenImageGradientRadial(int width, int height, float density, Color inner, Color outer); // Generate image: radial gradient RLAPI Image GenImageChecked(int width, int height, int checksX, int checksY, Color col1, Color col2); // Generate image: checked RLAPI Image GenImageWhiteNoise(int width, int height, float factor); // Generate image: white noise +RLAPI Image GenImagePerlinNoise(int width, int height, int offsetX, int offsetY, float scale); // Generate image: perlin noise RLAPI Image GenImageCellular(int width, int height, int tileSize); // Generate image: cellular algorithm, bigger tileSize means bigger cells // Image manipulation functions |
