summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/geom.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/geom.c b/src/common/geom.c
new file mode 100644
index 0000000..7abb422
--- /dev/null
+++ b/src/common/geom.c
@@ -0,0 +1,5 @@
1#include "common/geom.h"
2
3bool vector_equals(CartesianVector v1, CartesianVector v2) {
4 return v1.x == v2.x && v1.y == v2.y;
5}