Fix wrong sign in new method.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@3217 dfc29bdd-3216-0410-991c-e03cc46cb475
master
hybrid 2010-02-11 17:24:04 +00:00
parent ce2734d4e7
commit 360cd6d181
1 changed files with 3 additions and 3 deletions

View File

@ -1485,7 +1485,7 @@ namespace core
}
// Builds a left-handed perspective projection matrix based on a field of view
// Builds a left-handed perspective projection matrix based on a field of view, with far plane culling at infinity
template <class T>
inline CMatrix4<T>& CMatrix4<T>::buildProjectionMatrixPerspectiveFovInfinityLH(
f32 fieldOfViewRadians, f32 aspectRatio, f32 zNear, f32 epsilon)
@ -1506,12 +1506,12 @@ namespace core
M[8] = 0;
M[9] = 0;
M[10] = 1-epsilon;
M[10] = (T)(1.f-epsilon);
M[11] = 1;
M[12] = 0;
M[13] = 0;
M[14] = (T)(zNear*(1-epsilon));
M[14] = (T)(zNear*(epsilon-1.f));
M[15] = 0;
#if defined ( USE_MATRIX_TEST )