/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* vec4.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gbrochar +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/12/23 15:57:23 by gbrochar #+# #+# */ /* Updated: 2020/12/23 16:00:12 by gbrochar ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef VEC4_H # define VEC4_H typedef struct s_vec4 t_vec4; struct s_vec4 { double x; double y; double z; double w; }; #endif