From a3d51f7cf387b541bcb0ad1c5b4ea6459e7d840a Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sat, 9 Aug 2014 09:02:04 -0700 Subject: [PATCH] TranslationMatrix() is not static --- src/basics/matrix.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basics/matrix.hh b/src/basics/matrix.hh index 22e1f1c..b2dd107 100644 --- a/src/basics/matrix.hh +++ b/src/basics/matrix.hh @@ -82,7 +82,7 @@ typedef Matrix<4> Matrix4; * Create a translation matrix that will translate a vector to the given * coordinates. */ -static Matrix4 TranslationMatrix(const Double& x, const Double& y, const Double& z); +Matrix4 TranslationMatrix(const Double& x, const Double& y, const Double& z); #pragma mark Static Methods