]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - matrixlib.h
now uses hardware transforms
[xonotic/darkplaces.git] / matrixlib.h
index 62b8a3e1ff36c2942c235351dda9b36aa5c9e9d0..81364c68e2de344284f21b478a19c2ea5bc67af6 100644 (file)
@@ -84,6 +84,8 @@ void Matrix4x4_ConcatScale (matrix4x4_t *out, float x);
 // immediately applies a Scale3 to the matrix
 void Matrix4x4_ConcatScale3 (matrix4x4_t *out, float x, float y, float z);
 
+// print a matrix to the console
+void Matrix4x4_Print(const matrix4x4_t *in);
 
 
 // functions for manipulating 3x4 matrices
@@ -149,4 +151,7 @@ void Matrix3x4_ConcatScale (matrix3x4_t *out, float x);
 // immediately applies a Scale3 to the matrix
 void Matrix3x4_ConcatScale3 (matrix3x4_t *out, float x, float y, float z);
 
+// print a matrix to the console
+void Matrix3x4_Print(const matrix3x4_t *in);
+
 #endif