Created
May 29, 2013 12:15
-
-
Save rgngl/5669856 to your computer and use it in GitHub Desktop.
glsl random
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
float rand(vec3 co){ | |
return 0.9+0.1*fract(sin(co.z+dot(co.xy, vec2(12.9898,78.233))) * 43758.5453); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment