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

Function HMM_Lerp

HandmadeMath.h:543–547  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

541
542COVERAGE(HMM_Lerp, 1)
543static inline float HMM_Lerp(float A, float Time, float B)
544{
545 ASSERT_COVERED(HMM_Lerp);
546 return (1.0f - Time) * A + Time * B;
547}
548
549COVERAGE(HMM_Clamp, 1)
550static inline float HMM_Clamp(float Min, float Value, float Max)

Callers 2

TESTFunction · 0.85
TESTFunction · 0.85

Calls 3

HMM_LerpV2Function · 0.85
HMM_LerpV3Function · 0.85
HMM_LerpV4Function · 0.85

Tested by

no test coverage detected