diff options
author | nathansmithsmith <nathansmith7@mailfence.com> | 2023-08-03 00:11:48 -0600 |
---|---|---|
committer | nathansmithsmith <nathansmith7@mailfence.com> | 2023-08-03 00:11:48 -0600 |
commit | 6d7842484434d1d3f4265194ba87db6afff3186b (patch) | |
tree | 07d9307c500ae47c9c250a2cb8ec24104c78a94b /src/util.c | |
parent | 7259478c55bcf1eb717ee1b846522121ef5fd7f3 (diff) |
Working on circle thingy
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |