From 7b214503608550dc2853b9e01526723f8c65baf3 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 12 May 2020 14:14:06 +0200 Subject: Added mat4 in libftm, can rotate, scale and translate vector --- vendor/libftm/src/mat4/ftm_mat4set.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 vendor/libftm/src/mat4/ftm_mat4set.c (limited to 'vendor/libftm/src/mat4/ftm_mat4set.c') diff --git a/vendor/libftm/src/mat4/ftm_mat4set.c b/vendor/libftm/src/mat4/ftm_mat4set.c new file mode 100644 index 0000000..55e8125 --- /dev/null +++ b/vendor/libftm/src/mat4/ftm_mat4set.c @@ -0,0 +1,19 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ftm_mat4set.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: charles +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/05/12 11:21:20 by charles #+# #+# */ +/* Updated: 2020/05/12 11:21:58 by charles ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "libftm_mat4.h" + +t_ftmmat4 *ftm_mat4set(t_ftmmat4 *mat4, size_t y, size_t x, float value) +{ + mat4->m[y * 4 + x] = value; + return (mat4); +} -- cgit