- First commit to gitea

This commit is contained in:
2026-02-12 10:51:02 +01:00
commit a16a5a4102
40 changed files with 10033 additions and 0 deletions

14
common.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#include <stdint.h>
#include "Vectors.h"
#include "Matrices.h"
#include "geometry.h"
#define QUERY 0
#define ON 1
#define OFF 2
#define YES ON
#define NO OFF
#define Swap(x, y) { x -= y = (x += y) - y; }