| 131 | } |
| 132 | |
| 133 | Matrix4d_C LNLIB_MATRIX_multiply(Matrix4d_C a, Matrix4d_C b) |
| 134 | { |
| 135 | return FromMatrix4d(ToMatrix4d(a).Multiply(ToMatrix4d(b))); |
| 136 | } |
| 137 | |
| 138 | int LNLIB_MATRIX_get_inverse(Matrix4d_C m, Matrix4d_C* out_inverse) |
| 139 | { |
nothing calls this directly
no test coverage detected