OpenGLES添加投影

时间:2012-11-22 07:20:04

标签: objective-c ios opengl-es-2.0 projection-matrix

我开始学习OpenGLES,目前我正在阅读TUTORIAL

我已经达到段落添加投影而且我被困在那里:

// Add to render, right before the call to glViewport
CC3GLMatrix *projection = [CC3GLMatrix matrix];
float h = 4.0f * self.frame.size.height / self.frame.size.width;
[projection populateFromFrustumLeft:-2 andRight:2 andBottom:-h/2 andTop:h/2 andNear:4 andFar:10];
glUniformMatrix4fv(_projectionUniform, 1, 0, projection.glMatrix);

// Modify vertices so they are within projection near/far planes
const Vertex Vertices[] = {
    {{1, -1, -7}, {1, 0, 0, 1}},
    {{1, 1, -7}, {0, 1, 0, 1}},
    {{-1, 1, -7}, {0, 0, 1, 1}},
    {{-1, -1, -7}, {0, 0, 0, 1}}
};

作者使用populateFromFrustumLeft...中的一些变量而不解释它们。我想了解变量选择的逻辑,以便将来能够使用这个函数。

帮助我理解逻辑!

1 个答案:

答案 0 :(得分:2)

我找到了一个非常明确的解释!

观看此tutorial,您会在 18:00

看到答案