aboutsummaryrefslogtreecommitdiff
path: root/vendor/libftm/src/vec3/ftm_vec3add.c
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/libftm/src/vec3/ftm_vec3add.c')
-rw-r--r--vendor/libftm/src/vec3/ftm_vec3add.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/vendor/libftm/src/vec3/ftm_vec3add.c b/vendor/libftm/src/vec3/ftm_vec3add.c
deleted file mode 100644
index 9b5bd09..0000000
--- a/vendor/libftm/src/vec3/ftm_vec3add.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* ftm_vec3add.c :+: :+: :+: */
-/* +:+ +:+ +:+ */
-/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
-/* +#+#+#+#+#+ +#+ */
-/* Created: 2020/05/09 20:35:59 by charles #+# #+# */
-/* Updated: 2020/05/09 21:14:12 by charles ### ########.fr */
-/* */
-/* ************************************************************************** */
-
-#include "libftm_vec3.h"
-
-t_ftmvec3 *ftm_vec3add(t_ftmvec3 *dst, t_ftmvec3 *other)
-{
- dst->v[0] += other->v[0];
- dst->v[1] += other->v[1];
- dst->v[2] += other->v[2];
- return (dst);
-}