feat: add mat4f_mul_vec4f function (x64 / arm / none)

This commit is contained in:
2025-09-03 18:20:34 +02:00
parent 9a2be29b5f
commit 8d3a55e7f5
2 changed files with 58 additions and 0 deletions

4
src/math/mv4.h Normal file
View File

@@ -0,0 +1,4 @@
#include "mat4.h"
#include "vec4.h"
Vec4f_t mat4f_mul_vec4f(const Mat4f_t mat, Vec4f_t v);