Functions to generate noise.
|
| uint16_t | inoise16 (uint32_t x, uint32_t y, uint32_t z, uint32_t t) |
| | 16-bit, fixed point implementation of Perlin's noise.
|
| |
| uint16_t | inoise16 (uint32_t x, uint32_t y, uint32_t z) |
| | 16-bit, fixed point implementation of Perlin's noise.
|
| |
| uint16_t | inoise16 (uint32_t x, uint32_t y) |
| | 16-bit, fixed point implementation of Perlin's noise.
|
| |
| uint16_t | inoise16 (uint32_t x) |
| | 16-bit, fixed point implementation of Perlin's noise.
|
| |
|
| int16_t | inoise16_raw (uint32_t x, uint32_t y, uint32_t z) |
| | 16-bit, fixed point implementation of Perlin's noise without scaling.
|
| |
| int16_t | inoise16_raw (uint32_t x, uint32_t y, uint32_t z, uint32_t w) |
| |
| int16_t | inoise16_raw (uint32_t x, uint32_t y) |
| | 16-bit, fixed point implementation of Perlin's noise without scaling.
|
| |
| int16_t | inoise16_raw (uint32_t x) |
| | 16-bit, fixed point implementation of Perlin's noise without scaling.
|
| |
|
| uint8_t | inoise8 (uint16_t x, uint16_t y, uint16_t z) |
| | 8-Bit, fixed point implementation of Perlin's noise.
|
| |
| uint8_t | inoise8 (uint16_t x, uint16_t y) |
| | 8-Bit, fixed point implementation of Perlin's noise.
|
| |
| uint8_t | inoise8 (uint16_t x) |
| | 8-Bit, fixed point implementation of Perlin's noise.
|
| |