26 lines
507 B
C
26 lines
507 B
C
#ifndef _TEST_VECTOR2_H_
|
|
#define _TEST_VECTOR2_H_
|
|
|
|
#include "./../helpers.h"
|
|
#include "./vector2/vector2_reset.h"
|
|
#include "./vector2/vector2_set_values.h"
|
|
#include "./vector2/vector2_copy.h"
|
|
#include "./vector2/vector2_swap.h"
|
|
#include "./vector2/vector2_is_zero.h"
|
|
#include "./vector2/vector2_is_unit.h"
|
|
|
|
/*
|
|
int test_fp32_vector2();
|
|
|
|
int test_vector2_fp32_square_modulus();
|
|
|
|
int test_vector2_fp32_modulus();
|
|
|
|
int test_vector2_add_fp32();
|
|
|
|
int test_vector2_subtract_fp32();
|
|
*/
|
|
|
|
int test_vector2();
|
|
|
|
#endif
|