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

Function HMM_SubV3

HandmadeMath.h:697–707  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

695
696COVERAGE(HMM_SubV3, 1)
697static inline HMM_Vec3 HMM_SubV3(HMM_Vec3 Left, HMM_Vec3 Right)
698{
699 ASSERT_COVERED(HMM_SubV3);
700
701 HMM_Vec3 Result;
702 Result.X = Left.X - Right.X;
703 Result.Y = Left.Y - Right.Y;
704 Result.Z = Left.Z - Right.Z;
705
706 return Result;
707}
708
709COVERAGE(HMM_SubV4, 1)
710static inline HMM_Vec4 HMM_SubV4(HMM_Vec4 Left, HMM_Vec4 Right)

Callers 7

HMM_DeterminantM4Function · 0.85
HMM_InvGeneralM4Function · 0.85
HMM_LookAt_RHFunction · 0.85
HMM_LookAt_LHFunction · 0.85
HMM_SubFunction · 0.85
operator-Function · 0.85
TESTFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected