| 585 | |
| 586 | COVERAGE(HMM_V3, 1) |
| 587 | static inline HMM_Vec3 HMM_V3(float X, float Y, float Z) |
| 588 | { |
| 589 | ASSERT_COVERED(HMM_V3); |
| 590 | |
| 591 | HMM_Vec3 Result; |
| 592 | Result.X = X; |
| 593 | Result.Y = Y; |
| 594 | Result.Z = Z; |
| 595 | |
| 596 | return Result; |
| 597 | } |
| 598 | |
| 599 | COVERAGE(HMM_V4, 1) |
| 600 | static inline HMM_Vec4 HMM_V4(float X, float Y, float Z, float W) |