summaryrefslogtreecommitdiffhomepage
path: root/include/rodeo/math/vec3_t.h
blob: a3b3a36af0e343dfd11e7a9488ccb7dddcaaf054 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

typedef
struct
{
	float x;
	float y;
	float z;
}
rodeo_math_vec3_val_t;

typedef
union
{
	rodeo_math_vec3_val_t val;
	float raw[3];
}
rodeo_math_vec3_t;