Update 2d-noise.frag

fix typo: porcentage -> percentage
pull/197/head
Tom Brewe 7 years ago committed by GitHub
parent e74e3b7366
commit 293da8f5ce
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