scop/inc/vec4.h

16 lines
135 B
C
Raw Permalink Normal View History

2020-12-23 15:11:35 +00:00
#ifndef VEC4_H
# define VEC4_H
2024-04-24 18:40:56 +00:00
typedef struct s_vec4 t_vec4;
2020-12-23 15:11:35 +00:00
2024-04-24 18:40:56 +00:00
struct s_vec4
2020-12-23 15:11:35 +00:00
{
2024-04-24 18:40:56 +00:00
double x;
double y;
double z;
double w;
2020-12-23 15:11:35 +00:00
};
#endif
2024-04-24 18:40:56 +00:00