scop/inc/vec4.h

16 lines
135 B
C

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