| 926 | |
| 927 | COVERAGE(HMM_DotV2, 1) |
| 928 | static inline float HMM_DotV2(HMM_Vec2 Left, HMM_Vec2 Right) |
| 929 | { |
| 930 | ASSERT_COVERED(HMM_DotV2); |
| 931 | return (Left.X * Right.X) + (Left.Y * Right.Y); |
| 932 | } |
| 933 | |
| 934 | COVERAGE(HMM_DotV3, 1) |
| 935 | static inline float HMM_DotV3(HMM_Vec3 Left, HMM_Vec3 Right) |
no outgoing calls
no test coverage detected