diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-01-11 12:30:17 +0100 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-01-11 12:31:48 +0100 |
commit | 895062a09de83ddb2a10b6de1207918c6ab6e270 (patch) | |
tree | 5a8c0296923ba3c274c41cc4474196732f83fc78 /src/math/Vector.h | |
parent | Merge pull request #289 from erorcun/erorcun (diff) | |
download | re3-895062a09de83ddb2a10b6de1207918c6ab6e270.tar re3-895062a09de83ddb2a10b6de1207918c6ab6e270.tar.gz re3-895062a09de83ddb2a10b6de1207918c6ab6e270.tar.bz2 re3-895062a09de83ddb2a10b6de1207918c6ab6e270.tar.lz re3-895062a09de83ddb2a10b6de1207918c6ab6e270.tar.xz re3-895062a09de83ddb2a10b6de1207918c6ab6e270.tar.zst re3-895062a09de83ddb2a10b6de1207918c6ab6e270.zip |
Diffstat (limited to '')
-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( |