Merge pull request #197 from nylki/patch-1

fix typo: porcentage -> percentage
pull/204/head
Patricio Gonzalez Vivo 7 years ago committed by GitHub
commit f9d226cb03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -31,7 +31,7 @@ float noise (in vec2 st) {
vec2 u = f*f*(3.0-2.0*f);
// u = smoothstep(0.,1.,f);
// Mix 4 coorners porcentages
// Mix 4 coorners percentages
return mix(a, b, u.x) +
(c - a)* u.y * (1.0 - u.x) +
(d - b) * u.x * u.y;

Loading…
Cancel
Save