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

Function HMM_MulV3F

HandmadeMath.h:766–776  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

764
765COVERAGE(HMM_MulV3F, 1)
766static inline HMM_Vec3 HMM_MulV3F(HMM_Vec3 Left, float Right)
767{
768 ASSERT_COVERED(HMM_MulV3F);
769
770 HMM_Vec3 Result;
771 Result.X = Left.X * Right;
772 Result.Y = Left.Y * Right;
773 Result.Z = Left.Z * Right;
774
775 return Result;
776}
777
778COVERAGE(HMM_MulV4, 1)
779static inline HMM_Vec4 HMM_MulV4(HMM_Vec4 Left, HMM_Vec4 Right)

Callers 9

HMM_NormV3Function · 0.85
HMM_LerpV3Function · 0.85
HMM_InvGeneralM3Function · 0.85
HMM_DeterminantM4Function · 0.85
HMM_InvGeneralM4Function · 0.85
HMM_QFromAxisAngle_RHFunction · 0.85
HMM_MulFunction · 0.85
operator*Function · 0.85
TESTFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected