summaryrefslogtreecommitdiff
path: root/include/m_Do
diff options
context:
space:
mode:
authorhatal175 <hatal175@users.noreply.github.com>2025-12-29 14:12:01 +0200
committerGitHub <noreply@github.com>2025-12-29 04:12:01 -0800
commite77f841d351a2623490acdf0913eaf8f97f844d2 (patch)
tree7e1b0b2f04f945cb053899eef9fbf2041e212c41 /include/m_Do
parent1f391dc5bde660c21b4f9d5cf942049f94c6ac2e (diff)
Work on d_cc_d debug (#3002)
Diffstat (limited to 'include/m_Do')
-rw-r--r--include/m_Do/m_Do_mtx.h4
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 18022e4b1a..cbc3fd8616 100644
--- a/include/m_Do/m_Do_mtx.h
+++ b/include/m_Do/m_Do_mtx.h
@@ -100,6 +100,10 @@ inline void cMtx_copy(const Mtx src, Mtx dst) {
mDoMtx_copy(src, dst);
}
+inline void cMtx_trans(Mtx pDest, f32 x, f32 y, f32 z) {
+ mDoMtx_trans(pDest, x, y, z);
+}
+
inline void cMtx_multVecArray(const Mtx mtx, const Vec* src, Vec* dst, u32 count) {
mDoMtx_multVecArray(mtx, src, dst, count);
}