#ifndef MATH_H #define MATH_H #include "stdint.h" typedef struct { int x; int y; } RI_vector_2; typedef struct { float x; float y; } RI_vector_2f; typedef struct { float x; float y; float z; } RI_vector_3f; #endif