diff options
author | Vegard Storheil Eriksen <zyp@jvnv.net> | 2010-05-24 03:12:17 +0200 |
---|---|---|
committer | Vegard Storheil Eriksen <zyp@jvnv.net> | 2010-05-24 03:12:17 +0200 |
commit | 8e92b0c5aa0cc57e8729069dad4cb635845f51d8 (patch) | |
tree | 544a434113ce7e82d636497c46048e81986fc8cb /engine/matrix.h | |
parent | 4ada43585c11eabd6aa94dcd7ab6d62952796a26 (diff) |
Added Matrix-class.
Diffstat (limited to 'engine/matrix.h')
-rw-r--r-- | engine/matrix.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/engine/matrix.h b/engine/matrix.h new file mode 100644 index 0000000..b6e4e3c --- /dev/null +++ b/engine/matrix.h @@ -0,0 +1,22 @@ +#ifndef MATRIX_H +#define MATRIX_H + +#include "vector.h" + +template<int M, int N> +class Matrix { + public: + float m[M][N]; +}; + +class Matrix2 : Matrix<2, 2> { + public: + Matrix2(); + Matrix2(float m00, float m01, float m10, float m11); + + Vector2 operator*(const Vector2& v); +}; + +Matrix2 rotation_matrix(float rot); + +#endif |