feat: add mat4 init functions

This commit is contained in:
2025-07-04 06:41:15 +02:00
parent 8b14924da3
commit bdd4bd3e40
6 changed files with 96 additions and 38 deletions

View File

@@ -1,7 +1,5 @@
#include "vec4.h"
#define VEC_SIZE 4
Vec4f_t vec4f(float x, float y, float z, float w)
{
return (Vec4f_t){.x = x, .y = y, .z = z, .w = w};