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

Function HMM_MulV3

HandmadeMath.h:753–763  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

751
752COVERAGE(HMM_MulV3, 1)
753static inline HMM_Vec3 HMM_MulV3(HMM_Vec3 Left, HMM_Vec3 Right)
754{
755 ASSERT_COVERED(HMM_MulV3);
756
757 HMM_Vec3 Result;
758 Result.X = Left.X * Right.X;
759 Result.Y = Left.Y * Right.Y;
760 Result.Z = Left.Z * Right.Z;
761
762 return Result;
763}
764
765COVERAGE(HMM_MulV3F, 1)
766static inline HMM_Vec3 HMM_MulV3F(HMM_Vec3 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