| 1074 | } |
| 1075 | |
| 1076 | void SetIdentityMatrix( matrix3x4_t& matrix ) |
| 1077 | { |
| 1078 | memset( matrix.Base(), 0, sizeof(float)*3*4 ); |
| 1079 | matrix[0][0] = 1.0; |
| 1080 | matrix[1][1] = 1.0; |
| 1081 | matrix[2][2] = 1.0; |
| 1082 | } |
| 1083 | |
| 1084 | |
| 1085 | //----------------------------------------------------------------------------- |
no test coverage detected