added spinny bits
[fishladder.git] / vg / vg_m.h
index 27481ae995db9b3aca8694ffea139671e9f27438..0c4ba358593af4927a59f6e6335906a5cf0e653c 100644 (file)
--- a/vg/vg_m.h
+++ b/vg/vg_m.h
@@ -226,6 +226,40 @@ static inline void v4_zero( v4f a )
        a[0] = 0.f; a[1] = 0.f; a[2] = 0.f; a[3] = 0.f;
 }
 
+// Matrix 2x2
+// ===========================================================================================================
+
+#define M2X2_INDENTIY  {{1.0f, 0.0f, }, \
+                                                               { 0.0f, 1.0f, }}
+                                                               
+#define M2X2_ZERO                      {{0.0f, 0.0f, }, \
+                                                               { 0.0f, 0.0f, }}
+
+static inline void m2x2_copy( m2x2f a, m2x2f b )
+{
+       v2_copy( a[0], b[0] );
+       v2_copy( a[1], b[1] );
+}
+
+static inline void m2x2_identity( m2x2f a )
+{
+       m2x2f id = M2X2_INDENTIY;
+       m2x2_copy( id, a );
+}
+
+static inline void m2x2_create_rotation( m2x2f a, float theta )
+{
+       float s, c;
+       
+       s = sinf( theta );
+       c = cosf( theta );
+       
+       a[0][0] =  c;
+       a[0][1] = -s;
+       a[1][0] =  s;
+       a[1][1] =  c;
+}
+
 // Matrix 3x3
 //======================================================================================================