Lines Matching refs:z
1412 f32 x, y, z; // x, y, z components of normalized axis in C_MTXRotAxisRad() local
1426 z = vN.z; in C_MTXRotAxisRad()
1430 zSq = z * z; in C_MTXRotAxisRad()
1433 m[0][1] = ( t * x * y ) - ( s * z ); in C_MTXRotAxisRad()
1434 m[0][2] = ( t * x * z ) + ( s * y ); in C_MTXRotAxisRad()
1437 m[1][0] = ( t * x * y ) + ( s * z ); in C_MTXRotAxisRad()
1439 m[1][2] = ( t * y * z ) - ( s * x ); in C_MTXRotAxisRad()
1442 m[2][0] = ( t * x * z ) - ( s * y ); in C_MTXRotAxisRad()
1443 m[2][1] = ( t * y * z ) + ( s * x ); in C_MTXRotAxisRad()
1471 tmp1[0] = axis->z; in _PSMTXRotAxisRadInternal()
1472 tmp1[1] = axis->z; in _PSMTXRotAxisRadInternal()
1964 vxz = -2.0f * n->x * n->z; in C_MTXReflect()
1965 vyz = -2.0f * n->y * n->z; in C_MTXReflect()
1980 m[2][2] = 1.0f - 2.0f * n->z * n->z; in C_MTXReflect()
1981 m[2][3] = pdotn * n->z; in C_MTXReflect()
2135 vLook.z = camPos->z - target->z; in C_MTXLookAt()
2149 m[0][2] = vRight.z; in C_MTXLookAt()
2150 m[0][3] = -( camPos->x * vRight.x + camPos->y * vRight.y + camPos->z * vRight.z ); in C_MTXLookAt()
2154 m[1][2] = vUp.z; in C_MTXLookAt()
2155 m[1][3] = -( camPos->x * vUp.x + camPos->y * vUp.y + camPos->z * vUp.z ); in C_MTXLookAt()
2159 m[2][2] = vLook.z; in C_MTXLookAt()
2160 m[2][3] = -( camPos->x * vLook.x + camPos->y * vLook.y + camPos->z * vLook.z ); in C_MTXLookAt()