GenImagePerlinNoise and GenImageText. Get indexed functions for types.

This commit is contained in:
jussi
2023-04-07 15:09:27 +03:00
parent 9e7f538a38
commit 3cc1af265f
8 changed files with 224 additions and 97 deletions

18
API.md
View File

@@ -2982,6 +2982,15 @@ Generate image: white noise
---
> image = RL.GenImagePerlinNoise( Vector2 size, Vector2 offset, float factor )
Generate image: perlin noise
- Failure return -1
- Success return int
---
> image = RL.GenImageCellular( Vector2 size, int tileSize )
Generate image: cellular algorithm. Bigger tileSize means bigger cells
@@ -2991,6 +3000,15 @@ Generate image: cellular algorithm. Bigger tileSize means bigger cells
---
> image = RL.GenImageText( Vector2 size, string text )
Generate image: grayscale image from text data
- Failure return -1
- Success return int
---
## Textures - Image Manipulation Functions
---