Update grid-making.frag

This commit is contained in:
Joe Bowbeer 2020-07-31 20:20:35 -07:00 committed by GitHub
parent f2d2adb085
commit 04bf37329e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ void main() {
st *= 3.0; // Scale up the space by 3 st *= 3.0; // Scale up the space by 3
st = fract(st); // Wrap arround 1.0 st = fract(st); // Wrap arround 1.0
// Now we have 3 spaces that goes from 0-1 // Now we have 9 spaces that go from 0-1
color = vec3(st,0.0); color = vec3(st,0.0);
//color = vec3(circle(st,0.5)); //color = vec3(circle(st,0.5));