aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-07-16 18:57:08 -0600
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-07-16 18:57:08 -0600
commited1704f9a110c9fa909dccb3169bf388f48279e4 (patch)
treeb153bddd10a82dbcb7c5c3253e3466b61d5326ba /src/util.h
parent9eeb5293fc0d022298fb772338241aa7e8672dac (diff)
Chatgpt saved my ass again
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h
index 1d013f7..817d472 100644
--- a/src/util.h
+++ b/src/util.h
@@ -17,7 +17,10 @@ typedef struct AxisAngle {
AxisAngle AxisAngleIdentity();
+// boring math shit.
float signum(float n);
-float closestAngle(float a1, float a2);
+
+// Debugging stuff.
+void printVector3(Vector3 v);
#endif