summaryrefslogtreecommitdiff
path: root/Runtime/Math/PodMathTypes.h
blob: 6ac55a57dfd8017385c9877b6e33321b0396d3e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef POD_MATH_TYPES_H_
#define POD_MATH_TYPES_H_

namespace pod
{

struct v2f
{
	float x, y;
};

struct v3f
{
	float x, y, z;
};

struct m44f
{
	float m[16];
};

}

#endif