#ifndef VEC3_H
# define VEC3_H
typedef struct s_vec3 t_vec3;
struct s_vec3 {
double x;
double y;
double z;
};
#endif