如果glOrtho(0.0, 1.0, 0.0, 1.0, -1.0, 1.0)
,则我的代码有效。但是,如果我更改为glOrtho(0.0, 800.0, 0.0, 600.0, -1.0, 1.0)
,则我的代码将无法正常工作。可能鼠标回调不起作用。更改glOrtho
是要进行鼠标回调吗?我不知道问题是什么。
这是我的代码:
GLfloat myVertices[10][2];
GLfloat Width = 800.0;
GLfloat Height = 600.0;
GLint count = 0;
void Mouse(int button, int state, GLint x, GLint y)
{
if (button == GLUT_LEFT_BUTTON && state == GLUT_DOWN)
{
myVertices[count][0] = x / Width;
myVertices[count][1] = (Height - y) / Height;
count++;
drawScene();
}
}
GLvoid drawScene()
{
GLint index;
glClearColor(1.0, 1.0, 1.0, 1.0);
glClear(GL_COLOR_BUFFER_BIT);
glColor3f(1, 0, 0);
glPointSize(3.0f);
glEnableClientState(GL_VERTEX_ARRAY);
if (count > 0)
{
for (index = 0; index < count; index++)
{
glRectf(myVertices[index][0], myVertices[index][1], myVertices[index][0] + 0.01, myVertices[index][1] + 0.05);
//glRectf(myVertices[index][0], myVertices[index][1], myVertices[index][0]+50, myVertices[index][1]+50);
}
}
glFlush();
}
答案 0 :(得分:0)
您的鼠标回调仍像以前一样工作。您的坐标只是没有多大意义:
myVertices[count][0] = x / Width;
myVertices[count][1] = (Height - y) / Height;
这将导致[0,1]
中的值,这意味着当您设置像素完美的正交投影时,它们都将位于屏幕的左下像素。