Skip to content

Commit

Permalink
Fix NoisePerlin3DEased return value
Browse files Browse the repository at this point in the history
  • Loading branch information
kwolekr committed Nov 15, 2014
1 parent 8d3a68f commit 8831703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/noise.h
Expand Up @@ -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 comments on commit 8831703

Please sign in to comment.