Lines Matching refs:t
70 void C_MTXFrustum ( Mtx44 m, f32 t, f32 b, f32 lf, f32 r, f32 n, f32 f ) in C_MTXFrustum() argument
75 ASSERTMSG( (t != b), MTX_FRUSTUM_2 ); in C_MTXFrustum()
85 tmp = 1.0f / (t - b); in C_MTXFrustum()
88 m[1][2] = (t + b) * tmp; in C_MTXFrustum()
200 void C_MTXOrtho ( Mtx44 m, f32 t, f32 b, f32 lf, f32 r, f32 n, f32 f ) in C_MTXOrtho() argument
205 ASSERTMSG( (t != b), MTX_ORTHO_2 ); in C_MTXOrtho()
215 tmp = 1.0f / (t - b); in C_MTXOrtho()
219 m[1][3] = -(t + b) * tmp; in C_MTXOrtho()
1562 f32 t; // ( 1 - cosTheta ) in C_MTX44RotAxisRad() local
1571 t = 1.0f - c; in C_MTX44RotAxisRad()
1583 m[0][0] = ( t * xSq ) + ( c ); in C_MTX44RotAxisRad()
1584 m[0][1] = ( t * x * y ) - ( s * z ); in C_MTX44RotAxisRad()
1585 m[0][2] = ( t * x * z ) + ( s * y ); in C_MTX44RotAxisRad()
1588 m[1][0] = ( t * x * y ) + ( s * z ); in C_MTX44RotAxisRad()
1589 m[1][1] = ( t * ySq ) + ( c ); in C_MTX44RotAxisRad()
1590 m[1][2] = ( t * y * z ) - ( s * x ); in C_MTX44RotAxisRad()
1593 m[2][0] = ( t * x * z ) - ( s * y ); in C_MTX44RotAxisRad()
1594 m[2][1] = ( t * y * z ) + ( s * x ); in C_MTX44RotAxisRad()
1595 m[2][2] = ( t * zSq ) + ( c ); in C_MTX44RotAxisRad()