New permutation (improved randomness)

This commit is contained in:
Stefan Gustavson 2021-06-30 16:07:15 +02:00 committed by GitHub
parent aa505adc3f
commit 1af078ac6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ vec3 mod7(vec3 x) {
// Permutation polynomial: (34x^2 + 6x) mod 289 // Permutation polynomial: (34x^2 + 6x) mod 289
vec3 permute(vec3 x) { vec3 permute(vec3 x) {
return mod289((34.0 * x + 6.0) * x); return mod289((34.0 * x + 10.0) * x);
} }
// Cellular noise, returning F1 and F2 in a vec2. // Cellular noise, returning F1 and F2 in a vec2.