feat(test_vec3): added all unit tests for vector operations

This commit is contained in:
2025-03-09 19:55:28 +01:00
committed by Loïc GUEZO
parent cc6e50919b
commit 189653268f
3 changed files with 136 additions and 0 deletions

12
test/test_vec3.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef TEST_V4
#define TEST_V4
void addVector3_test();
void subVector3_test();
void scaleVector3_test();
void dotVector3_test();
void lenVector3_test();
void normVector3_test();
void distVector3_test();
#endif // TEST_V4