scop/inc/vec3.h

14 lines
124 B
C
Raw Permalink Normal View History

2020-12-23 16:06:42 +00:00
#ifndef VEC3_H
# define VEC3_H
2024-04-24 18:40:56 +00:00
typedef struct s_vec3 t_vec3;
2020-12-23 16:06:42 +00:00
2024-04-24 18:40:56 +00:00
struct s_vec3 {
double x;
double y;
double z;
2020-12-23 16:06:42 +00:00
};
#endif
2024-04-24 18:40:56 +00:00