scop/inc/vec3.h

14 lines
124 B
C

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