aboutsummaryrefslogtreecommitdiffstats
path: root/src/math/Vector.h
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-01-11 13:30:17 +0200
committerSergeanur <s.anureev@yandex.ua>2020-01-11 13:31:48 +0200
commit895062a09de83ddb2a10b6de1207918c6ab6e270 (patch)
tree5a8c0296923ba3c274c41cc4474196732f83fc78 /src/math/Vector.h
parent6af77d8514fd3e72c29482b630a1aaee6f77dda8 (diff)
ProjectileInfo
Diffstat (limited to 'src/math/Vector.h')
-rw-r--r--src/math/Vector.h2
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(