diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2022-10-10 19:32:55 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2022-10-10 19:33:40 -0700 |
commit | 26f569299d6769cff6edf024c68df83732715392 (patch) | |
tree | 673bdb91a4a5d620495887547431b084d95518f2 /src/m4f.h | |
parent | a11aea516471278baffbc8d7714eedae116d6d65 (diff) |
m4f: fix typo in m4f_invert()
I feel like I've re-fixed this a dozen times now in various
projects because I haven't been submoduling m4f*.h
Diffstat (limited to 'src/m4f.h')
-rw-r--r-- | src/m4f.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -129,7 +129,7 @@ static inline m4f_t m4f_invert(const m4f_t *m) m->m[3][0] * m->m[1][3] * m->m[2][2]; inv.m[2][0] = m->m[1][0] * m->m[2][1] * m->m[3][3] - - m->m[1][0] * m->m[8][3] * m->m[3][1] - + m->m[1][0] * m->m[2][3] * m->m[3][1] - m->m[2][0] * m->m[1][1] * m->m[3][3] + m->m[2][0] * m->m[1][3] * m->m[3][1] + m->m[3][0] * m->m[1][1] * m->m[2][3] - |