Skip to content
Snippets Groups Projects
Commit 88317034 authored by kwolekr's avatar kwolekr
Browse files

Fix NoisePerlin3DEased return value

parent 8d3a68f3
Branches
Tags
No related merge requests found
......@@ -187,7 +187,7 @@ float contour(float v);
#define NoisePerlin3DEased(np, x, y, z, s) ((np)->offset + (np)->scale * \
noise3d_perlin((float)(x) / (np)->spread.X, (float)(y) / (np)->spread.Y, \
(float)(z) / (np)->spread.Z, (s) + (np)->seed, (np)->octaves, \
(np)->persist), true)
(np)->persist, true))
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment