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/inc/libftm.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 vendor/libftm/inc/libftm.h (limited to 'vendor/libftm/inc/libftm.h') diff --git a/vendor/libftm/inc/libftm.h b/vendor/libftm/inc/libftm.h new file mode 100644 index 0000000..9755d68 --- /dev/null +++ b/vendor/libftm/inc/libftm.h @@ -0,0 +1,20 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* libftm.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: charles +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/05/12 11:07:32 by charles #+# #+# */ +/* Updated: 2020/05/12 13:42:27 by charles ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef LIBFTM_H +# define LIBFTM_H + +# include + +float ftm_radian(float degree); + +#endif -- cgit