summaryrefslogtreecommitdiff
path: root/include/m_Do
diff options
context:
space:
mode:
authorJcw87 <Jcw87@users.noreply.github.com>2023-08-13 21:08:32 -0700
committerGitHub <noreply@github.com>2023-08-14 07:08:32 +0300
commita997bb00bc2c8b08b260ef619a09885855dc4a3f (patch)
tree9d055d1fbb3a790047a87869189cbca9b2e7e488 /include/m_Do
parent9ae61771ec058c8e2a67ac08054e0e1e1ef6ce8b (diff)
d_drawlist (#1881)
Diffstat (limited to 'include/m_Do')
-rw-r--r--include/m_Do/m_Do_lib.h1
-rw-r--r--include/m_Do/m_Do_mtx.h4
2 files changed, 5 insertions, 0 deletions
diff --git a/include/m_Do/m_Do_lib.h b/include/m_Do/m_Do_lib.h
index 33e6ae7f3f..b8c915df85 100644
--- a/include/m_Do/m_Do_lib.h
+++ b/include/m_Do/m_Do_lib.h
@@ -26,6 +26,7 @@ struct mDoLib_clipper {
}
static f32 getFar() { return mSystemFar; }
+ static f32 getFovyRate() { return mFovyRate; }
static void resetFar() {
mClipper.setFar(mSystemFar);
diff --git a/include/m_Do/m_Do_mtx.h b/include/m_Do/m_Do_mtx.h
index c05e64d138..e2dbf5c99e 100644
--- a/include/m_Do/m_Do_mtx.h
+++ b/include/m_Do/m_Do_mtx.h
@@ -67,6 +67,10 @@ inline void cMtx_ZrotM(Mtx mtx, s16 z) {
mDoMtx_ZrotM(mtx, z);
}
+inline void cMtx_lookAt(Mtx param_0, const Vec* param_1, const Vec* param_2, s16 param_3) {
+ mDoMtx_lookAt(param_0, param_1, param_2, param_3);
+}
+
inline void cMtx_multVec(Mtx mtx, const Vec* src, Vec* dst) {
mDoMtx_multVec(mtx, src, dst);
}