moved linear algebra code to core/

This commit is contained in:
Lorenzo Torres 2025-11-05 20:11:22 +01:00
parent 34b6e19896
commit fa2a4887df
3 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include "types.h"
#include "../types.h"
#define PI 3.14159265358979323846
#define RAD(deg) deg * (PI / 180.0f)

View file

@ -7,7 +7,7 @@ endif
SRC:=\
topaz.c\
linear.c\
core/linear.c\
core/arena.c\
core/vector.c\