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

Function HMM_SubV2

HandmadeMath.h:685–694  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

683
684COVERAGE(HMM_SubV2, 1)
685static inline HMM_Vec2 HMM_SubV2(HMM_Vec2 Left, HMM_Vec2 Right)
686{
687 ASSERT_COVERED(HMM_SubV2);
688
689 HMM_Vec2 Result;
690 Result.X = Left.X - Right.X;
691 Result.Y = Left.Y - Right.Y;
692
693 return Result;
694}
695
696COVERAGE(HMM_SubV3, 1)
697static inline HMM_Vec3 HMM_SubV3(HMM_Vec3 Left, HMM_Vec3 Right)

Callers 3

HMM_SubFunction · 0.85
operator-Function · 0.85
TESTFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected