diff options
author | UnavailableDev <ggwildplay@gmail.com> | 2023-03-12 12:58:51 +0100 |
---|---|---|
committer | UnavailableDev <ggwildplay@gmail.com> | 2023-03-12 12:58:51 +0100 |
commit | 43951373604173c70bb2423dd56988b60a6704db (patch) | |
tree | 990932b86648ef13384a49ef8e19426f7c0b3216 /src/engine/maths.c | |
parent | 7882ccc99d36ed225534227bd343923a7f4696c0 (diff) |
camera movement
Diffstat (limited to 'src/engine/maths.c')
-rw-r--r-- | src/engine/maths.c | 15 |
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, + }; +} |