gpt4 book ai didi

ios - OPENGLES 2.0 PUSHMATRIX POP MATRIX 实现

转载 作者:行者123 更新时间:2023-11-28 20:45:54 24 4
gpt4 key购买 nike

我正在 opengl es2.0 中实现一个应用程序。我需要使用 pushmatrix() 和 popmatrix()。我们都知道这个功能在opengl es 2.0中已经没有了。我已尝试遵循并实现给定的方法 here .但是我没有找到太多的成功。我们还需要为此实现大量的头文件。有没有人将此作为他们项目的一部分实现?如果可能的话,有人可以发布一些代码片段来指导我保存和恢复当前矩阵的状态吗?

最佳答案

假设您有一个简单的 linmath 库,如下所示:

typedef GLfloat vec4[4];
inline void vec4_add(vec4 a, vec4 b)
{
int i;
for(i=0; i<4; ++i)
a[i] += b[i];
}
inline void vec4_sub(vec4 a, vec4 b)
{
int i;
for(i=0; i<4; ++i)
a[i] -= b[i];
}
inline void vec4_scale(vec4 v, GLfloat s)
{
int i;
for(i=0; i<4; ++i)
v[i] *= s;
}
inline GLfloat vec4_inner_product(vec4 a, vec4 b)
{
GLfloat p = 0.;
int i;
for(i=0; i<4; ++i)
p += b[i]*a[i];
return p;
}
inline GLfloat vec4_length(vec4 v)
{
return sqrtf(vec4_inner_product(v,v));
}
inline void vec4_normalize(vec4 v)
{
GLfloat k = 1.0 / vec4_length(v);
vec4_scale(v, k);
}
inline void vec4_cross(vec4 a, vec4 b)
{
vec4 c;
c[0] = a[1]*b[2] - a[2]*b[1];
c[1] = a[2]*b[0] - a[0]*b[2];
c[2] = a[0]*b[1] - a[1]*b[0];
c[3] = 0.;
memcpy(a, c, sizeof(a));
}

typedef vec4 mat4x4[4];
inline void mat4x4_identity(mat4x4 M)
{
int i, j;
M[0][0] = 1; M[1][0] = 0; M[2][0] = 0; M[3][0] = 0;
M[0][1] = 0; M[1][1] = 1; M[2][1] = 0; M[3][1] = 0;
M[0][2] = 0; M[1][2] = 0; M[2][2] = 1; M[3][2] = 0;
M[0][3] = 0; M[1][3] = 0; M[2][3] = 0; M[3][3] = 1;
/*for(j=0; j<4; ++j)
for(i=0; i<4; ++i) {
M[i][j] = i==j ? 1 : 0;
}*/
}
inline void mat4x4_cpy(mat4x4 M, mat4x4 N)
{
int i, j;
for(j=0; j<4; ++j) {
for(i=0; i<4; ++i) {
M[i][j] = N[i][j];
}
}
}
inline void mat4x4_mul(mat4x4 M, mat4x4 b)
{
mat4x4 a;
int i, j, k;
memcpy(a, M, sizeof(a));
for(j=0; j<4; ++j) {
for(i=0; i<4; ++i) {
M[i][j] = 0;
for(k=0; k<4; ++k) {
M[i][j] += a[i][k]*b[k][j];
}
}
}
}
inline void mat4x4_trans(mat4x4 M, GLfloat x, GLfloat y, GLfloat z)
{
mat4x4 T; mat4x4_identity(T);
T[3][0] = x;
T[3][1] = y;
T[3][2] = z;
mat4x4_mul(M, T);
}
inline void mat4x4_rot_X(mat4x4 M, GLfloat angle)
{
GLfloat s = sinf(angle);
GLfloat c = cosf(angle);
mat4x4 R = {
{1, 0, 0, 0},
{0, c, s, 0},
{0,-s, c, 0},
{0, 0, 0, 1}
};
mat4x4_mul(M, R);
}
inline void mat4x4_rot_Y(mat4x4 M, GLfloat angle)
{
GLfloat s = sinf(angle);
GLfloat c = cosf(angle);
mat4x4 R = {
{c, 0, s, 0},
{0, 1, 0, 0},
{-s, 0, c, 0},
{0, 0, 0, 1}
};
mat4x4_mul(M, R);
}
inline void mat4x4_rot_Z(mat4x4 M, GLfloat angle)
{
GLfloat s = sinf(angle);
GLfloat c = cosf(angle);
mat4x4 R = {
{c, s, 0, 0},
{-s, c, 0, 0},
{0, 0, 1, 0},
{0, 0, 0, 1}
};
mat4x4_mul(M, R);
}
inline void mat4x4_row(vec4 r, mat4x4 M, int i)
{
int k;
for(k=0; k<4; ++k)
r[k] = M[k][i];
}
inline void mat4x4_col(vec4 r, mat4x4 M, int i)
{
int k;
for(k=0; k<4; ++k)
r[k] = M[i][k];
}
inline void mat4x4_cpy_T(mat4x4 M, mat4x4 N)
{
int i, j;
for(j=0; j<4; ++j) {
for(i=0; i<4; ++i) {
M[i][j] = N[j][i];
}
}
}

您无需推送矩阵,只需创建一个副本并继续使用该副本即可。弹出然后变成释放副本并切换回您创建副本的矩阵。

关于ios - OPENGLES 2.0 PUSHMATRIX POP MATRIX 实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6415204/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com