From 18383a5fc596bf9546f14d7393ee66c57720b116 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 12 Oct 2008 11:14:22 +0000 Subject: libmath API cleanup --- src/math/matrix4f.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/math/matrix4f.cc') diff --git a/src/math/matrix4f.cc b/src/math/matrix4f.cc index 094bbd6..371d666 100644 --- a/src/math/matrix4f.cc +++ b/src/math/matrix4f.cc @@ -59,7 +59,7 @@ Matrix4f & Matrix4f::operator=(const Matrix4f &other) assign(other); return(*this); } - + Matrix4f & Matrix4f::operator=(const Axis & axis) { assign(axis); @@ -69,7 +69,7 @@ Matrix4f & Matrix4f::operator=(const Axis & axis) Matrix4f const Matrix4f::transpose() { Matrix4f t; - + for (size_t i = 0; i < 4; i++) for (size_t j = 0; j < 4; j++) t.matrix[j][i] = matrix[i][j]; -- cgit v1.2.3