Fix some non-ASCII characters.

Patch originally by /dev/humancontroller, modified by me.
This commit is contained in:
James Canete 2012-10-30 03:00:46 +00:00
parent 36c30f6782
commit 32d1bc4f2a
2 changed files with 7 additions and 7 deletions

View file

@ -368,10 +368,10 @@ void R_CalcTBN2(vec3_t tangent, vec3_t bitangent, vec3_t normal,
VectorSubtract(v3, v1, v3v1);
// The equation presented in the article states that:
// c2c1_T = V2.texcoord.x V1.texcoord.x
// c2c1_B = V2.texcoord.y V1.texcoord.y
// c3c1_T = V3.texcoord.x V1.texcoord.x
// c3c1_B = V3.texcoord.y V1.texcoord.y
// c2c1_T = V2.texcoord.x - V1.texcoord.x
// c2c1_B = V2.texcoord.y - V1.texcoord.y
// c3c1_T = V3.texcoord.x - V1.texcoord.x
// c3c1_B = V3.texcoord.y - V1.texcoord.y
// Calculate c2c1_T and c2c1_B
c2c1_T = t2[0] - t1[0];
@ -1227,7 +1227,7 @@ void R_SetupProjectionZ(viewParms_t *dest)
plane2[2] = -DotProduct (dest->or.axis[0], plane);
plane2[3] = DotProduct (plane, dest->or.origin) - plane[3];
// Lengyel, Eric. “Modifying the Projection Matrix to Perform Oblique Near-plane Clipping”.
// Lengyel, Eric. "Modifying the Projection Matrix to Perform Oblique Near-plane Clipping".
// Terathon Software 3D Graphics Library, 2004. http://www.terathon.com/code/oblique.html
q[0] = (SGN(plane2[0]) + dest->projectionMatrix[8]) / dest->projectionMatrix[0];
q[1] = (SGN(plane2[1]) + dest->projectionMatrix[9]) / dest->projectionMatrix[5];