You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Alternative 1: instead of cellular and cellular_fast, make it one function with default value of enum .normal or .fast.
Alternative 2: just like alternative 1 but the addition parameter is on the template level.
glm/gtc/noise
has implementations of Stefan Gustafson's Perlin and Simplex noise, but not the cellular noise. Would you be open for me to add it?In line with the original implementation I'd implement:
vec<2, T, Q> cellular(vec<2, T, Q> const& Position)
vec<2, T, Q> cellular_fast(vec<2, T, Q> const& Position)
vec<2, T, Q> cellular(vec<3, T, Q> const& Position)
vec<2, T, Q> cellular_fast(vec<3, T, Q> const& Position)
The text was updated successfully, but these errors were encountered: