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

Function HMM_MulV2F

HandmadeMath.h:741–750  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

739
740COVERAGE(HMM_MulV2F, 1)
741static inline HMM_Vec2 HMM_MulV2F(HMM_Vec2 Left, float Right)
742{
743 ASSERT_COVERED(HMM_MulV2F);
744
745 HMM_Vec2 Result;
746 Result.X = Left.X * Right;
747 Result.Y = Left.Y * Right;
748
749 return Result;
750}
751
752COVERAGE(HMM_MulV3, 1)
753static inline HMM_Vec3 HMM_MulV3(HMM_Vec3 Left, HMM_Vec3 Right)

Callers 5

HMM_NormV2Function · 0.85
HMM_LerpV2Function · 0.85
HMM_MulFunction · 0.85
operator*Function · 0.85
TESTFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected