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

Function HMM_DivV2

HandmadeMath.h:818–827  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

816
817COVERAGE(HMM_DivV2, 1)
818static inline HMM_Vec2 HMM_DivV2(HMM_Vec2 Left, HMM_Vec2 Right)
819{
820 ASSERT_COVERED(HMM_DivV2);
821
822 HMM_Vec2 Result;
823 Result.X = Left.X / Right.X;
824 Result.Y = Left.Y / Right.Y;
825
826 return Result;
827}
828
829COVERAGE(HMM_DivV2F, 1)
830static inline HMM_Vec2 HMM_DivV2F(HMM_Vec2 Left, float Right)

Callers 3

HMM_DivFunction · 0.85
operator/Function · 0.85
TESTFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected