TranslationMatrix() is not static

This commit is contained in:
Eryn Wells 2014-08-09 09:02:04 -07:00
parent 9b6b6a20b7
commit a3d51f7cf3

View file

@ -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