aboutsummaryrefslogtreecommitdiff
path: root/vendor/libftm/src/vec4/ftm_vec4sub.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-05-11 13:29:51 +0200
committerCharles <sircharlesaze@gmail.com>2020-05-11 13:29:51 +0200
commitd07d87964f13d3c1e6ad8c2f6d7db21101f1ef34 (patch)
tree52dd2e82580eb3c70201991b53a2a2b4c434908b /vendor/libftm/src/vec4/ftm_vec4sub.c
parent0700a8f567ab733a57fe688e45e5092d3fa1c1a0 (diff)
downloadscop-d07d87964f13d3c1e6ad8c2f6d7db21101f1ef34.tar.gz
scop-d07d87964f13d3c1e6ad8c2f6d7db21101f1ef34.tar.bz2
scop-d07d87964f13d3c1e6ad8c2f6d7db21101f1ef34.zip
libftm matrix, dynamic vector instead of fixed size
Diffstat (limited to 'vendor/libftm/src/vec4/ftm_vec4sub.c')
-rw-r--r--vendor/libftm/src/vec4/ftm_vec4sub.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/vendor/libftm/src/vec4/ftm_vec4sub.c b/vendor/libftm/src/vec4/ftm_vec4sub.c
deleted file mode 100644
index 8082ddd..0000000
--- a/vendor/libftm/src/vec4/ftm_vec4sub.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* ftm_vec4sub.c :+: :+: :+: */
-/* +:+ +:+ +:+ */
-/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
-/* +#+#+#+#+#+ +#+ */
-/* Created: 2020/05/09 20:57:43 by charles #+# #+# */
-/* Updated: 2020/05/09 21:15:13 by charles ### ########.fr */
-/* */
-/* ************************************************************************** */
-
-#include "libftm_vec4.h"
-
-t_ftmvec4 *ftm_vec4sub(t_ftmvec4 *dst, t_ftmvec4 *other)
-{
- dst->v[0] -= other->v[0];
- dst->v[1] -= other->v[1];
- dst->v[2] -= other->v[2];
- dst->v[3] -= other->v[3];
- return (dst);
-}