fix(vector3): import math

This commit is contained in:
2025-03-09 19:42:14 +01:00
committed by Loïc GUEZO
parent 66b55cce0f
commit cc6e50919b

View File

@@ -1,6 +1,8 @@
#include <math/vector3.h>
#include <math.h>
#include <stdlib.h>
#include <math/vector3.h>
Vec3* vec3(float x, float y, float z)
{
Vec3* vec = (Vec3*)malloc(sizeof(Vec3));