feat(mat4): add det function

This commit is contained in:
2025-08-12 11:49:03 +02:00
parent 78a6edf84b
commit 036fc6105c
4 changed files with 84 additions and 63 deletions

View File

@@ -1,16 +0,0 @@
#include "../src/math/mat4.h"
#include <stdio.h>
void config() {
#if defined (SIMD_X86)
printf("SIMD enabled: X86\n");
#elif defined (SIMD_ARCH)
printf("SIMD enabled: ARCH\n");
#else
printf("SIMD disabled\n");
#endif
}
int main() {
config();
}

View File

@@ -9,7 +9,6 @@
#include <stdio.h>
#include "../src/math/vec3.h"
#include "../src/math/vec4.h"
#define EPSILON 1e-6f