#include "vec2f.h" struct sw_vec2f sw_vec2f(f32 x, f32 y) { struct sw_vec2f vec; vec.x = x; vec.y = y; return vec; }