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

Function HMM_MulV2

HandmadeMath.h:729–738  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

727
728COVERAGE(HMM_MulV2, 1)
729static inline HMM_Vec2 HMM_MulV2(HMM_Vec2 Left, HMM_Vec2 Right)
730{
731 ASSERT_COVERED(HMM_MulV2);
732
733 HMM_Vec2 Result;
734 Result.X = Left.X * Right.X;
735 Result.Y = Left.Y * Right.Y;
736
737 return Result;
738}
739
740COVERAGE(HMM_MulV2F, 1)
741static inline HMM_Vec2 HMM_MulV2F(HMM_Vec2 Left, float Right)

Callers 3

HMM_MulFunction · 0.85
operator*Function · 0.85
TESTFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected