From 251b611fef77533082165bab0b88eefa05b49fbe Mon Sep 17 00:00:00 2001 From: Connor Thomson Date: Sat, 12 Sep 2026 14:16:55 -0700 Subject: Add simple shadows --- include/ta_math.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'include/ta_math.h') 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 -#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 -- cgit v1.2.3