cube and tesseract frame toggles, rotation experiments

This commit is contained in:
2018-12-20 22:46:58 -05:00
parent 5580899074
commit 0b87482276
4 changed files with 88 additions and 40 deletions

View File

@@ -15,5 +15,7 @@ void main() {
float s = 1;
float v = smoothstep(3, -3, pos.z) / 2;
fcolor = vec4(hsv2rgb(vec3(h, s, v)), 1);
vec3 hsv = vec3(h, s, v);
fcolor = vec4(hsv2rgb(hsv), 1);
}