summaryrefslogtreecommitdiff
path: root/include/ta_math.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ta_math.h')
-rw-r--r--include/ta_math.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/ta_math.h b/include/ta_math.h
index 4852fc2..58751ea 100644
--- a/include/ta_math.h
+++ b/include/ta_math.h
@@ -21,9 +21,12 @@
#include <math.h>
-#define PI 3.14159265358979323846
-#define CIRCLE_DEG 360.0
+#define PI 3.14159265358979323846
+#define CIRCLE_DEG 360.0
+#define TA_MATRIX_ELEMENTS 16
double ta_rad(double degrees);
+void ta_matrix_identity(float *matrix);
+void ta_matrix_multiply(float *result, const float *left, const float *right);
#endif // TA_MATH_H \ No newline at end of file