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

Function HMM_AddV3

HandmadeMath.h:653–663  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

651
652COVERAGE(HMM_AddV3, 1)
653static inline HMM_Vec3 HMM_AddV3(HMM_Vec3 Left, HMM_Vec3 Right)
654{
655 ASSERT_COVERED(HMM_AddV3);
656
657 HMM_Vec3 Result;
658 Result.X = Left.X + Right.X;
659 Result.Y = Left.Y + Right.Y;
660 Result.Z = Left.Z + Right.Z;
661
662 return Result;
663}
664
665COVERAGE(HMM_AddV4, 1)
666static inline HMM_Vec4 HMM_AddV4(HMM_Vec4 Left, HMM_Vec4 Right)

Callers 5

HMM_LerpV3Function · 0.85
HMM_InvGeneralM4Function · 0.85
HMM_AddFunction · 0.85
operator+Function · 0.85
TESTFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected