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

Function HMM_LerpV3

HandmadeMath.h:1058–1062  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1056
1057COVERAGE(HMM_LerpV3, 1)
1058static inline HMM_Vec3 HMM_LerpV3(HMM_Vec3 A, float Time, HMM_Vec3 B)
1059{
1060 ASSERT_COVERED(HMM_LerpV3);
1061 return HMM_AddV3(HMM_MulV3F(A, 1.0f - Time), HMM_MulV3F(B, Time));
1062}
1063
1064COVERAGE(HMM_LerpV4, 1)
1065static inline HMM_Vec4 HMM_LerpV4(HMM_Vec4 A, float Time, HMM_Vec4 B)

Callers 2

HMM_LerpFunction · 0.85
TESTFunction · 0.85

Calls 2

HMM_AddV3Function · 0.85
HMM_MulV3FFunction · 0.85

Tested by

no test coverage detected