IT
[OpenGL] glColor 색상
ruming
2021. 10. 11. 20:53
Black
glColor3f(0.0, 0.0, 0.0)
White
glColor3f(1.0, 1.0, 1.0)
Red
glColor3f(1.0, 0.0, 0.0)
Green
glColor3f(0.0, 1.0, 0.0)
Blue
glColor3f(0.0, 0.0, 1.0)
Cyan
glColor3f(0.0, 1.0, 1.0)
Magenta
glColor3f(1.0, 0.0, 1.0)
Yellow
glColor3f(1.0, 1.0, 0.0)
r, g, b 순이고
C = g + b
M = r + b
Y = r + g