I'm curious about gluPerspective function. I was translating the code for my engine when I saw that this function's code was messy.
void glhPerspectivef2(float *matrix, float fovyInDegrees, float aspectRatio,
float znear, float zfar)
{
float ymax, xmax;
float temp, temp2, temp3, temp4;
ymax = znear * tanf(fovyInDegrees * M_PI / 360.0);
//ymin = -ymax;
//xmin = -ymax * aspectRatio;
xmax = ymax * aspectRatio;
glhFrustumf2(matrix, -xmax, xmax, -ymax, ymax, znear, zfar);
}
Why does it create temp, temp2, temp3 and temp4? Why is there commented code? I suppose it's to specify some the parameters of glFrustum. But then, why xmin = -ymax * aspectRatio; and not xmin = -max;
I have no idea where you've got that function from... But if you really want to calculate a perspective matrix you can do it like this.
Where the following
m
is defined asfloat m[16];
and where thezero()
function sets all the floats inm
to0.0f