From 38a23c4dc4875d6502f05f3d6584ce60a65981ca Mon Sep 17 00:00:00 2001 From: leo Date: Wed, 19 Jan 2005 23:01:06 +0000 Subject: Added a Matrix Transpose function. git-svn-id: http://svn.leocad.org/trunk@368 c7d43263-9d01-0410-8a33-9dba5d9f93d6 --- common/matrix.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'common/matrix.h') diff --git a/common/matrix.h b/common/matrix.h index 7da4d1d..733f16b 100644 --- a/common/matrix.h +++ b/common/matrix.h @@ -28,10 +28,11 @@ class Matrix void ToEulerAngles (float *rot) const; void ToAxisAngle (float *rot) const; - void LoadIdentity (); - void Translate (float x, float y, float z); - void Multiply (Matrix& m1, Matrix& m2); - bool Invert (); + void LoadIdentity(); + void Translate(float x, float y, float z); + void Multiply(Matrix& m1, Matrix& m2); + bool Invert(); + void Transpose3(); -- cgit v1.2.3