diff options
| author | MegaMech <7255464+MegaMech@users.noreply.github.com> | 2025-05-28 14:18:38 -0600 |
|---|---|---|
| committer | MegaMech <7255464+MegaMech@users.noreply.github.com> | 2025-05-28 14:18:38 -0600 |
| commit | 5bf771b58331870a1cc00323a353ec452b4c9ced (patch) | |
| tree | a697c9390648960ee88ce7b696c91b0ab333bf36 /src/os/guLookAtF.c | |
| parent | c55781264336269a7086e4be33df2659d70ce061 (diff) | |
wip interp changeswipinterpchanges
Diffstat (limited to 'src/os/guLookAtF.c')
| -rw-r--r-- | src/os/guLookAtF.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/os/guLookAtF.c b/src/os/guLookAtF.c index 3163b89b4..bebd1b204 100644 --- a/src/os/guLookAtF.c +++ b/src/os/guLookAtF.c @@ -17,6 +17,7 @@ void guLookAtF(float mf[4][4], float xEye, float yEye, float zEye, float xAt, fl float yUp, float zUp) { float len, xLook, yLook, zLook, xRight, yRight, zRight; + FrameInterpolation_Record_guLookAt(mf, xEye, yEye, zEye, xAt, yAt, zAt, xUp, yUp, zUp); guMtxIdentF(mf); xLook = xAt - xEye; @@ -74,8 +75,8 @@ void guLookAt(Mtx* m, float xEye, float yEye, float zEye, float xAt, float yAt, float zUp) { float mf[4][4]; + //FrameInterpolation_RecordMatrixMtxFToMtx((MtxF*)mf, m); guLookAtF(mf, xEye, yEye, zEye, xAt, yAt, zAt, xUp, yUp, zUp); - - guMtxF2L(mf, m); FrameInterpolation_RecordMatrixMtxFToMtx((MtxF*)mf, m); + guMtxF2L(mf, m); } |
