bgc-c/basic-geometry-test/main.c
2025-02-13 19:28:40 +07:00

25 lines
340 B
C

#include <stdio.h>
#include <stdlib.h>
#include "helpers.h"
#include "tests/utilities.h"
#include "tests/vector2.h"
#include "tests/vector3.h"
#include "tests/quaternion.h"
#include "tests/versor.h"
int main()
{
test_utilities();
test_vector2();
test_vector3();
test_quaternion();
test_versor();
return 0;
}