1

[已解决 - 请参阅底部的答案]

我正在尝试使用iOS (iPhone) 上的 OpenGL ES 2.0绘制具有透视的立方体,但它显示为矩形。

从我在网上收集的信息来看,它似乎与视口/投影矩阵有关,但我似乎无法确定真正的原因。

如果我将视口设置为正方形(宽度 == 高度),它绘制得非常好(立方体),但如果我正确设置它(宽度 = 屏幕宽度,高度 = 屏幕高度),那么立方体被绘制为矩形形状。

是否应该使用视口相应地设置投影矩阵使立方体保持立方体?!

我的代码(如果需要更多信息,请告诉我):

渲染方法:

// viewportSize is SCREEN_WIDTH and SCREEN_HEIGHT
// viewportLowerLeft is 0.0 and 0.0
ivec2 size = this->viewportSize;
ivec2 lowerLeft = this->viewportLowerLeft;
glViewport(lowerLeft.x, lowerLeft.y, size.x, size.y); // if I put size.x, size.x it draws well


mat4 projectionMatrix = mat4::FOVFrustum(45.0, 0.1, 100.0, size.x / size.y);

glUniformMatrix4fv(uniforms.Projection, 1, 0, projectionMatrix.Pointer());

矩阵运算:

static Matrix4<T> Frustum(T left, T right, T bottom, T top, T near, T far)
{
    T a = 2 * near / (right - left);
    T b = 2 * near / (top - bottom);
    T c = (right + left) / (right - left);
    T d = (top + bottom) / (top - bottom);
    T e = - (far + near) / (far - near);
    T f = -2 * far * near / (far - near);
    Matrix4 m;
    m.x.x = a; m.x.y = 0; m.x.z = 0; m.x.w = 0;
    m.y.x = 0; m.y.y = b; m.y.z = 0; m.y.w = 0;
    m.z.x = c; m.z.y = d; m.z.z = e; m.z.w = -1;
    m.w.x = 0; m.w.y = 0; m.w.z = f; m.w.w = 1;
    return m;
}
static Matrix4<T> FOVFrustum(T fieldOfView, T near, T far, T aspectRatio)
{
    T size = near * tanf(DEGREES_TO_RADIANS(fieldOfView) / 2.0);
    return Frustum(-size, size, -size / aspectRatio, size / aspectRatio, near, far);
}
4

2 回答 2

0

如果您还没有弄清楚这一点,请更改:

return Frustum(-size, size, -size / aspectRatio, size / aspectRatio, near, far);

return Frustum(-size / aspectRatio, size / aspectRatio, -size, size,, near, far);

它应该正确绘制。(或简单地将比例从 size.x/size.y 更改为 size.y/size.x)

于 2012-09-28T00:21:37.527 回答
0

好的我发现了问题,size.x和size.y都是int,所以除法返回一个int。

1.0 * size.x / size.y

解决问题。 掌心

于 2012-10-11T14:05:37.683 回答