aboutsummaryrefslogtreecommitdiff
path: root/src/engine/maths.c
diff options
context:
space:
mode:
authorUnavailableDev <ggwildplay@gmail.com>2023-03-12 12:58:51 +0100
committerUnavailableDev <ggwildplay@gmail.com>2023-03-12 12:58:51 +0100
commit43951373604173c70bb2423dd56988b60a6704db (patch)
tree990932b86648ef13384a49ef8e19426f7c0b3216 /src/engine/maths.c
parent7882ccc99d36ed225534227bd343923a7f4696c0 (diff)
camera movement
Diffstat (limited to 'src/engine/maths.c')
-rw-r--r--src/engine/maths.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/engine/maths.c b/src/engine/maths.c
new file mode 100644
index 0000000..ebd699c
--- /dev/null
+++ b/src/engine/maths.c
@@ -0,0 +1,15 @@
+#include "engine/maths.h"
+
+vec_cor vec_cen2cor(vec_cen in, vec2 halfDistance){
+ return (vec_cor){
+ .x = in.x - halfDistance.x,
+ .y = in.y - halfDistance.y,
+ };
+}
+
+vec_cen vec_cor2cen(vec_cor in, vec2 halfDistance){
+ return (vec_cen){
+ .x = in.x + halfDistance.x,
+ .y = in.y + halfDistance.y,
+ };
+}