使用 OpenGL 的多边形透视投影
Perspective projection for a polygon Using OpenGL
我正在尝试使用 open-GL 实现透视投影
但是当我应用 gluPerspective(0,0.5,0.5,5) 方法时,多边形未显示在透视图中,而是显示在正交视图中
这是输出
任何人都可以提供帮助
我的代码:
#include<GL/glut.h>
float angle = 2;
void myinit(void)
{
glClearColor(1.0, 1.0, 1.0, 0.0);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
//glOrtho(0.0, 1.0, 0.0, 1.0, -1.0, 5);
//glFrustum(-0.5, 2.4, -0.5, 0.5, -0.5, 0.5);
//glFrustum(-5.0, 5.0, -5.0, 5.0, 5, 100);
gluPerspective(0,0.5,0.5,5);
}
void polygon(void)
{
glClear(GL_COLOR_BUFFER_BIT);
glColor3f(0.0, 0.0, 1.0);
//glLineWidth(2);
//glRotatef(angle, 0.0, 0.0, 1.0);
glBegin(GL_POLYGON);
glVertex3f(0.25, 0.25, 0.0);
glVertex3f(0.75, 0.25, 0.0);
glVertex3f(0.75, 0.75, 0.0);
glVertex3f(0.25, 0.75, 0.0);
//glVertex3f(0, 0.5, 0.0);
glEnd();
glFlush();
}
int main(int argc, char** argv)
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);
glutInitWindowPosition(50, 100);
glutInitWindowSize(1000, 1000);
glutCreateWindow("Open Gl 2D Geometric Transformation");
myinit();
glutDisplayFunc(polygon);
glutMainLoop();
return 0;
}
gluPerspective
的第一个参数是错误的:
gluPerspective(0,0.5,0.5,5);
gluPerspective
的第一个参数是以度为单位的垂直视野角。该值必须大于 0.0 且小于 180。0.0 是无效参数,会导致未定义的行为。
可能该指令根本没有设置矩阵。
无论如何,如果你设置了一个正确的角度,几何就会被剪裁。透视投影矩阵定义了一个Viewing frustum。所有不在近平面和远平面之间的几何图形都被剪裁。在您的情况下,近平面为 0.5,远平面为 5.0。
设置视图矩阵并通过沿负 z 轴移动几何体来在近平面和远平面之间平移几何体。例如 (0, 0, -2.5).
gluPerspective
的第二个参数是纵横比。由于 window 的大小为 1000x1000,因此纵横比必须为 1.0:
void myinit(void)
{
glClearColor(1.0, 1.0, 1.0, 0.0);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
GLdouble fov = 90.0; // 90 degrees
GLdouble aspect = 1.0;
GLdouble near_dist = 0.5;
GLdouble far_dist = 5.0;
gluPerspective(fov, aspect, near_dist, far_dist);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glTranslatef(0.0f, 0.0f, -2.5f); // near_dist < 2.5 < far_dist
}
我正在尝试使用 open-GL 实现透视投影
但是当我应用 gluPerspective(0,0.5,0.5,5) 方法时,多边形未显示在透视图中,而是显示在正交视图中
这是输出
#include<GL/glut.h>
float angle = 2;
void myinit(void)
{
glClearColor(1.0, 1.0, 1.0, 0.0);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
//glOrtho(0.0, 1.0, 0.0, 1.0, -1.0, 5);
//glFrustum(-0.5, 2.4, -0.5, 0.5, -0.5, 0.5);
//glFrustum(-5.0, 5.0, -5.0, 5.0, 5, 100);
gluPerspective(0,0.5,0.5,5);
}
void polygon(void)
{
glClear(GL_COLOR_BUFFER_BIT);
glColor3f(0.0, 0.0, 1.0);
//glLineWidth(2);
//glRotatef(angle, 0.0, 0.0, 1.0);
glBegin(GL_POLYGON);
glVertex3f(0.25, 0.25, 0.0);
glVertex3f(0.75, 0.25, 0.0);
glVertex3f(0.75, 0.75, 0.0);
glVertex3f(0.25, 0.75, 0.0);
//glVertex3f(0, 0.5, 0.0);
glEnd();
glFlush();
}
int main(int argc, char** argv)
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);
glutInitWindowPosition(50, 100);
glutInitWindowSize(1000, 1000);
glutCreateWindow("Open Gl 2D Geometric Transformation");
myinit();
glutDisplayFunc(polygon);
glutMainLoop();
return 0;
}
gluPerspective
的第一个参数是错误的:
gluPerspective(0,0.5,0.5,5);
gluPerspective
的第一个参数是以度为单位的垂直视野角。该值必须大于 0.0 且小于 180。0.0 是无效参数,会导致未定义的行为。
可能该指令根本没有设置矩阵。
无论如何,如果你设置了一个正确的角度,几何就会被剪裁。透视投影矩阵定义了一个Viewing frustum。所有不在近平面和远平面之间的几何图形都被剪裁。在您的情况下,近平面为 0.5,远平面为 5.0。
设置视图矩阵并通过沿负 z 轴移动几何体来在近平面和远平面之间平移几何体。例如 (0, 0, -2.5).
gluPerspective
的第二个参数是纵横比。由于 window 的大小为 1000x1000,因此纵横比必须为 1.0:
void myinit(void)
{
glClearColor(1.0, 1.0, 1.0, 0.0);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
GLdouble fov = 90.0; // 90 degrees
GLdouble aspect = 1.0;
GLdouble near_dist = 0.5;
GLdouble far_dist = 5.0;
gluPerspective(fov, aspect, near_dist, far_dist);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glTranslatef(0.0f, 0.0f, -2.5f); // near_dist < 2.5 < far_dist
}