#ifndef VEC4_H
# define VEC4_H
typedef struct s_vec4 t_vec4;
struct s_vec4
{
double x;
double y;
double z;
double w;
};
#endif