feat(vector): Initialize module and add conversion functions

This commit is contained in:
2025-03-09 19:40:32 +01:00
committed by Loïc GUEZO
parent e8517ea625
commit 66b55cce0f
2 changed files with 21 additions and 0 deletions

10
include/math/vector.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef VECTOR_H
#define VECTOR_H
#include "math/vector3.h"
#include "math/vector4.h"
Vec3* Vec4ToVec3(Vec4* v);
Vec4* Vec3ToVec4(Vec3* v);
#endif // VECTOR_H