summaryrefslogtreecommitdiff
path: root/include/ta_math.h
diff options
context:
space:
mode:
authorConnor Thomson <blumatrikz@gmail.com>2026-09-12 14:16:55 -0700
committerConnor Thomson <blumatrikz@gmail.com>2026-09-12 14:16:55 -0700
commit251b611fef77533082165bab0b88eefa05b49fbe (patch)
treea3286e1fb991f5b0ecbace6208cb6c0ef1dcb845 /include/ta_math.h
parent8fc46365d6bdcde0c18a8b413b9f7a80fa487107 (diff)
Add simple shadowsHEADmaster
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