Fix missing identifier.

This commit is contained in:
sebcrozet 2019-04-02 20:04:44 +02:00 committed by Sébastien Crozet
parent 4c5996e67b
commit 77cb68e47f
1 changed files with 1 additions and 1 deletions

View File

@ -811,7 +811,7 @@ pub fn reversed_infinite_perspective_rh_no<N: RealField>(aspect: N, fovy: N, nea
mat[(0, 0)] = f / aspect; mat[(0, 0)] = f / aspect;
mat[(1, 1)] = f; mat[(1, 1)] = f;
mat[(2, 3)] = two * near; mat[(2, 3)] = near * crate::convert(2.0);
mat[(3, 2)] = -N::one(); mat[(3, 2)] = -N::one();
mat mat