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

typedef
struct
{
	float x;
	float y;
}
rodeo_math_vec2_val_t;

typedef
union
{
	rodeo_math_vec2_val_t val;
	float raw[2];
}
rodeo_math_vec2_t;