FastLED 3.9.15
Loading...
Searching...
No Matches

◆ inoise8() [3/3]

uint8_t inoise8 ( uint16_t x,
uint16_t y,
uint16_t z )
extern

8-Bit, fixed point implementation of Perlin's noise.

See also
inoise8_raw()
Returns
scaled noise value as an unsigned integer, 0-255
Parameters
xx-axis coordinate on noise map (1D)
yy-axis coordinate on noise map (2D)
zz-axis coordinate on noise map (3D)

Definition at line 616 of file noise.cpp.

616 {
617 //return scale8(76+(inoise8_raw(x,y,z)),215)<<1;
618 int8_t n = inoise8_raw( x, y, z); // -64..+64
619 n+= 64; // 0..128
620 uint8_t ans = qadd8( n, n); // 0..255
621 return ans;
622}
uint32_t z[NUM_LAYERS]
Definition Fire2023.ino:82
uint32_t x[NUM_LAYERS]
Definition Fire2023.ino:80
uint32_t y[NUM_LAYERS]
Definition Fire2023.ino:81
LIB8STATIC_ALWAYS_INLINE uint8_t qadd8(uint8_t i, uint8_t j)
Add one byte to another, saturating at 0xFF.
Definition math8.h:31
int8_t inoise8_raw(uint16_t x, uint16_t y, uint16_t z)
8-bit, fixed point implementation of Perlin's noise without scaling.
Definition noise.cpp:575

References inoise8_raw(), qadd8(), x, y, and z.

Referenced by fill_raw_2dnoise8(), fill_raw_noise8(), fillnoise8(), and fl::NoisePalette::fillnoise8().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: