FastLED
3.9.15
Loading...
Searching...
No Matches
◆
grad()
[2/4]
static fl::i32 grad
(
fl::u8
hash
,
fl::i32
x
,
fl::i32
y
)
static
Definition at line
83
of file
simplex.cpp.hpp
.
83
{
84
fl::u8
h =
hash
& 7;
// Convert low 3 bits of hash code
85
fl::i32 u = h < 4 ?
x
:
y
;
// into 8 simple gradient directions,
86
fl::i32 v = h < 4 ?
y
:
x
;
// and compute the dot product with (x,y).
87
return
((h&1) != 0 ? -u : u) + ((h&2) != 0 ? -2*v : 2*v);
88
}
y
int y
Definition
simple.h:93
x
int x
Definition
simple.h:92
fl::anonymous_namespace{noise_woryley.cpp.hpp}::hash
u16 hash(i32 x, i32 y)
Definition
noise_woryley.cpp.hpp:19
fl::u8
unsigned char u8
Definition
stdint.h:131
References
x
, and
y
.
simplex.cpp.hpp
Generated on Tue Jun 16 2026 00:07:02 for FastLED by
1.13.2