aboutsummaryrefslogtreecommitdiff
path: root/src/util.c
diff options
context:
space:
mode:
authornathansmithsmith <nathansmith7@mailfence.com>2023-08-03 00:11:48 -0600
committernathansmithsmith <nathansmith7@mailfence.com>2023-08-03 00:11:48 -0600
commit6d7842484434d1d3f4265194ba87db6afff3186b (patch)
tree07d9307c500ae47c9c250a2cb8ec24104c78a94b /src/util.c
parent7259478c55bcf1eb717ee1b846522121ef5fd7f3 (diff)
Working on circle thingy
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util.c b/src/util.c
index 7f6d2ce..8165e11 100644
--- a/src/util.c
+++ b/src/util.c
@@ -17,6 +17,9 @@ void printVector3(Vector3 v) {
printf("%f %f %f\n", v.x, v.y, v.z);
}
+void printVector2(Vector2 v) {
+ printf("%f %f\n", v.x, v.y);
+}
// Warning. Mostly chatgpt written.