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

View File

@@ -1,3 +1,15 @@
#include "test_vec3.h"
#include <stdio.h>
int main() {
addVector3_test();
subVector3_test();
scaleVector3_test();
dotVector3_test();
lenVector3_test();
normVector3_test();
distVector3_test();
printf("All Vector4 tests succeeded\n");
return 0;
}