| 1947 | |
| 1948 | COVERAGE(HMM_Rotate_LH, 1) |
| 1949 | static inline HMM_Mat4 HMM_Rotate_LH(float Angle, HMM_Vec3 Axis) |
| 1950 | { |
| 1951 | ASSERT_COVERED(HMM_Rotate_LH); |
| 1952 | /* NOTE(lcf): Matrix will be inverse/transpose of RH. */ |
| 1953 | return HMM_Rotate_RH(-Angle, Axis); |
| 1954 | } |
| 1955 | |
| 1956 | COVERAGE(HMM_InvRotate, 1) |
| 1957 | static inline HMM_Mat4 HMM_InvRotate(HMM_Mat4 RotationMatrix) |
no test coverage detected