| 2302 | |
| 2303 | COVERAGE(HMM_NLerp, 1) |
| 2304 | static inline HMM_Quat HMM_NLerp(HMM_Quat Left, float Time, HMM_Quat Right) |
| 2305 | { |
| 2306 | ASSERT_COVERED(HMM_NLerp); |
| 2307 | |
| 2308 | HMM_Quat Result = _HMM_MixQ(Left, 1.0f-Time, Right, Time); |
| 2309 | Result = HMM_NormQ(Result); |
| 2310 | |
| 2311 | return Result; |
| 2312 | } |
| 2313 | |
| 2314 | COVERAGE(HMM_SLerp, 1) |
| 2315 | static inline HMM_Quat HMM_SLerp(HMM_Quat Left, float Time, HMM_Quat Right) |