MCPcopy Index your code
hub / github.com/HandmadeMath/HandmadeMath / HMM_NLerp

Function HMM_NLerp

HandmadeMath.h:2304–2312  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2302
2303COVERAGE(HMM_NLerp, 1)
2304static 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
2314COVERAGE(HMM_SLerp, 1)
2315static inline HMM_Quat HMM_SLerp(HMM_Quat Left, float Time, HMM_Quat Right)

Callers 2

HMM_SLerpFunction · 0.85
TESTFunction · 0.85

Calls 2

_HMM_MixQFunction · 0.85
HMM_NormQFunction · 0.85

Tested by

no test coverage detected