From 15740faf9fe9fe4be08965098bbf2947e096aeeb Mon Sep 17 00:00:00 2001 From: chai Date: Wed, 14 Aug 2019 22:50:43 +0800 Subject: +Unity Runtime code --- Runtime/Math/PodMathTypes.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Runtime/Math/PodMathTypes.h (limited to 'Runtime/Math/PodMathTypes.h') diff --git a/Runtime/Math/PodMathTypes.h b/Runtime/Math/PodMathTypes.h new file mode 100644 index 0000000..6ac55a5 --- /dev/null +++ b/Runtime/Math/PodMathTypes.h @@ -0,0 +1,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 -- cgit v1.1-26-g67d0