diff options
author | aap <aap@papnet.eu> | 2020-01-12 23:19:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-12 23:19:55 +0100 |
commit | 9d3c73156bd388cc82e15555b57f49abdceab317 (patch) | |
tree | 8c05ff1d896b13603db2c26a21f48722f1410b2e /src/math | |
parent | Merge pull request #291 from Sergeanur/AccidentManager (diff) | |
parent | Fixes (diff) | |
download | re3-9d3c73156bd388cc82e15555b57f49abdceab317.tar re3-9d3c73156bd388cc82e15555b57f49abdceab317.tar.gz re3-9d3c73156bd388cc82e15555b57f49abdceab317.tar.bz2 re3-9d3c73156bd388cc82e15555b57f49abdceab317.tar.lz re3-9d3c73156bd388cc82e15555b57f49abdceab317.tar.xz re3-9d3c73156bd388cc82e15555b57f49abdceab317.tar.zst re3-9d3c73156bd388cc82e15555b57f49abdceab317.zip |
Diffstat (limited to 'src/math')
-rw-r--r-- | src/math/Vector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/Vector.h b/src/math/Vector.h index 605d96ab..cd436123 100644 --- a/src/math/Vector.h +++ b/src/math/Vector.h @@ -109,7 +109,7 @@ DotProduct(const CVector &v1, const CVector &v2) return v1.x*v2.x + v1.y*v2.y + v1.z*v2.z; } -inline CVector +inline const CVector CrossProduct(const CVector &v1, const CVector &v2) { return CVector( |