bgc-c/basic-geometry-test/tests/vector3.c

22 lines
424 B
C

#include "./vector3.h"
#include "./../helpers.h"
void test_vector3()
{
print_testing_section("BGC Vector3");
test_vector3_reset();
test_vector3_set_values();
test_vector3_copy();
test_vector3_swap();
test_vector3_is_zero();
test_vector3_is_unit();
test_vector3_modulus();
/*
test_vector3_add();
test_vector3_subtract();
test_vector3_multiply();
test_vector3_divide();
*/
}