mirror of
https://github.com/guezoloic/t3dsr.git
synced 2026-01-25 10:34:23 +00:00
15 lines
282 B
C
15 lines
282 B
C
#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;
|
|
} |