diff options
author | aap <aap@papnet.eu> | 2019-06-22 21:29:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-22 21:29:14 +0200 |
commit | 7a77f995b2f08b998d72d8db44790a0606f2d52d (patch) | |
tree | e044cb90c729554cf56ed76c039231bb04c78671 /src/math/Matrix.h | |
parent | bla (diff) | |
parent | attempt to fix build error (diff) | |
download | re3-7a77f995b2f08b998d72d8db44790a0606f2d52d.tar re3-7a77f995b2f08b998d72d8db44790a0606f2d52d.tar.gz re3-7a77f995b2f08b998d72d8db44790a0606f2d52d.tar.bz2 re3-7a77f995b2f08b998d72d8db44790a0606f2d52d.tar.lz re3-7a77f995b2f08b998d72d8db44790a0606f2d52d.tar.xz re3-7a77f995b2f08b998d72d8db44790a0606f2d52d.tar.zst re3-7a77f995b2f08b998d72d8db44790a0606f2d52d.zip |
Diffstat (limited to 'src/math/Matrix.h')
-rw-r--r-- | src/math/Matrix.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/math/Matrix.h b/src/math/Matrix.h index 10255af1..a93de636 100644 --- a/src/math/Matrix.h +++ b/src/math/Matrix.h @@ -155,6 +155,9 @@ public: r.Normalise(); f = CrossProduct(u, r); } + void CopyOnlyMatrix(CMatrix *other){ + m_matrix = other->m_matrix; + } }; inline CMatrix& |