summaryrefslogtreecommitdiff
path: root/common/matrix.h
diff options
context:
space:
mode:
authorleo2005-01-19 23:01:06 +0000
committerleo2005-01-19 23:01:06 +0000
commit38a23c4dc4875d6502f05f3d6584ce60a65981ca (patch)
tree1b191ede0cfa8b45fb8a0c2481d7b47a7858cf39 /common/matrix.h
parent5514daff893caa2472a907e65c959389780011ee (diff)
Added a Matrix Transpose function.
git-svn-id: http://svn.leocad.org/trunk@368 c7d43263-9d01-0410-8a33-9dba5d9f93d6
Diffstat (limited to 'common/matrix.h')
-rw-r--r--common/matrix.h9
1 files changed, 5 insertions, 4 deletions
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();