2014. 4. 20. 16:30
[OpenGL]
◆ OpenGL: gluPerspective
원근 투영 방법
gluPerspective(GLdouble fovy, GLdouble aspect, GLdouble zNear, GLdouble zFar)
- 멀고 가까움을 표현함
- gluPerspective(시야각, 종횡비, 전방전달면, 후방절단면)
ex) gluPerspective(45.0, width/height, 1.0, 400.0);
void glFrustum( GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble near, GLdouble far )
http://warmz.tistory.com/440
시야(FOV: Field of View):상하 y축 방향의 시야각(0 -180도)
X축 방향의 시야는 종횡비(Aspect Ratio)에 의해 결정됨(폭 / 높이)
'OpenGL' 카테고리의 다른 글
OpenGL: Index of Vertex Array (0) | 2014.05.04 |
---|---|
OpenGL: Geometric and Vertex (0) | 2014.05.04 |
OpenGL: Setting Viewport (0) | 2014.04.19 |
OpenGL: Setting Clipping region (0) | 2014.04.19 |
OpenGL: Basic knowledge for 3D programing (0) | 2014.04.19 |