feat: add ci, testing and base structure
Some checks failed
CI / build (push) Failing after 56s

This commit is contained in:
2026-03-14 12:43:28 +01:00
parent 3dd87cc5b8
commit 431c9abcc7
6 changed files with 78 additions and 0 deletions

5
src/linear_algebra.c Normal file
View File

@@ -0,0 +1,5 @@
#include "curtle/linear_algebra.h"
vec2 vec2_add(vec2 a, vec2 b) {
return (vec2){a.x + b.x, a.y + b.y};
}