-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibft.h
62 lines (58 loc) · 2.57 KB
/
libft.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* libft.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: awoimbee <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/10/23 20:34:49 by awoimbee #+# #+# */
/* Updated: 2020/10/29 14:48:37 by awoimbee ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIBFT_H
# define LIBFT_H
# include <string.h>
# include <libft/ft_prtf.h>
# include <libft/ft_mem.h>
# include <libft/ft_str.h>
# include <libft/t_fstream.h>
# include <libft/t_garbage.h>
# include <libft/t_lst.h>
# include <libft/t_queue.h>
# include <libft/t_rbtmap.h>
# include <libft/t_vector.h>
# include <libft/ft_defines.h>
# include <libft/t_vec4.h>
# include <libft/ft_nb.h>
# include <libft/ft_char.h>
# include <libft/ft_fd.h>
# include <libft/ft_exit.h>
/*
** t_vec4 vec4_newf(const float f);
** t_vec4 vec4_newv(const float x, const float y, const float z,
** const float w);
** t_vec4 vec4_newa(const float f[4]);
** t_vec4 vec4_newa3(const float f[3], float w);
** t_vec4 vec4_newzero(void);
** t_vec4 vec4_newnan(void);
** t_vec4 vec4_add(const t_vec4 a, const t_vec4 b);
** t_vec4 vec4_addf(const t_vec4 a, const float b);
** t_vec4 vec4_sub(const t_vec4 a, const t_vec4 b);
** t_vec4 vec4_subf(const t_vec4 a, const float b);
** t_vec4 vec4_fsub(const float a, const t_vec4 b);
** t_vec4 vec4_mul(const t_vec4 a, const t_vec4 b);
** t_vec4 vec4_mulf(const t_vec4 a, const float b);
** t_vec4 vec4_div(const t_vec4 a, const t_vec4 b);
** t_vec4 vec4_divf(const t_vec4 a, const float b);
** t_vec4 vec4_abs(const t_vec4 a);
** t_vec4 vec4_sqrt(const t_vec4 a);
** t_vec4 vec4_square(const t_vec4 a);
** float vec4_dot(const t_vec4 a, const t_vec4 b);
** float vec4_mod(const t_vec4 a);
** float vec4_mod2(const t_vec4 a);
** t_vec4 vec4_cross(const t_vec4 a, const t_vec4 b);
** t_vec4 vec4_matmul(const t_vec4 mat[4], const t_vec4 vec);
** void vec4_newmat_aa(t_vec4 mat[4], const float f[4][4]);
** void vec4_newmat_a(t_vec4 mat[4], const float f[16]);
*/
#endif