diff options
| author | Max Roncace <me@caseif.net> | 2025-07-31 05:19:46 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-31 02:19:46 -0700 |
| commit | e0bbad1f3fd4e3a71ca3a9220de1fb1a9ddcd1ee (patch) | |
| tree | 2eb3101e9672288ab95f20981cbdbb0429ffacc7 /include/m_Do | |
| parent | 418e39356dc0e9b7ff0995a2530be9d1bd7c367d (diff) | |
Miscellaneous match improvements (#2562)
Diffstat (limited to 'include/m_Do')
| -rw-r--r-- | include/m_Do/m_Do_mtx.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/m_Do/m_Do_mtx.h b/include/m_Do/m_Do_mtx.h index 12e730c9a6..40fe3577ac 100644 --- a/include/m_Do/m_Do_mtx.h +++ b/include/m_Do/m_Do_mtx.h @@ -100,6 +100,10 @@ inline void cMtx_multVecArray(Mtx mtx, const Vec* src, Vec* dst, u32 count) { mDoMtx_multVecArray(mtx, src, dst, count); } +inline void cMtx_inverseTranspose(const Mtx a, Mtx b) { + mDoMtx_inverseTranspose(a, b); +} + inline void mDoMtx_multVecZero(CMtxP param_0, Vec* param_1) { param_1->x = param_0[0][3]; param_1->y = param_0[1][3]; |
