| 1205 | |
| 1206 | COVERAGE(HMM_MulM2F, 1) |
| 1207 | static inline HMM_Mat2 HMM_MulM2F(HMM_Mat2 Matrix, float Scalar) |
| 1208 | { |
| 1209 | ASSERT_COVERED(HMM_MulM2F); |
| 1210 | |
| 1211 | HMM_Mat2 Result; |
| 1212 | |
| 1213 | Result.Elements[0][0] = Matrix.Elements[0][0] * Scalar; |
| 1214 | Result.Elements[0][1] = Matrix.Elements[0][1] * Scalar; |
| 1215 | Result.Elements[1][0] = Matrix.Elements[1][0] * Scalar; |
| 1216 | Result.Elements[1][1] = Matrix.Elements[1][1] * Scalar; |
| 1217 | |
| 1218 | return Result; |
| 1219 | } |
| 1220 | |
| 1221 | COVERAGE(HMM_DivM2F, 1) |
| 1222 | static inline HMM_Mat2 HMM_DivM2F(HMM_Mat2 Matrix, float Scalar) |