/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* vec3.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gbrochar +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/12/23 16:14:13 by gbrochar #+# #+# */ /* Updated: 2020/12/23 16:14:28 by gbrochar ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef VEC3_H # define VEC3_H typedef struct s_vec3 t_vec3; struct s_vec3 { double x; double y; double z; }; #endif