diff options
Diffstat (limited to 'src/math/vector3f.h')
-rw-r--r-- | src/math/vector3f.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/vector3f.h b/src/math/vector3f.h index d338f50..c2ebc6a 100644 --- a/src/math/vector3f.h +++ b/src/math/vector3f.h @@ -143,7 +143,7 @@ std::istream &operator>>(std::istream & is, Vector3f & vector); Vector3f operator*(float scalar, const Vector3f& vector); /// vector cross product -const Vector3f crossproduct(Vector3f const& first, Vector3f const second); +const Vector3f crossproduct(Vector3f const & first, Vector3f const & second); /// vetor dot product float dotproduct(const Vector3f& first, const Vector3f& second); |