diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-19 16:20:13 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-19 16:20:13 -0500 |
commit | 59edd60ebec61bf24dd27063f85bcd049fd0af13 (patch) | |
tree | 902bb77c940134d20e35dfcb556b8e755bc373ef /include/vector3.hpp | |
parent | 36ed75a7749b81fab69f66b9ef8bbf0d18489f73 (diff) |
killed common, more inventory, other random stuff
Diffstat (limited to 'include/vector3.hpp')
-rw-r--r-- | include/vector3.hpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/vector3.hpp b/include/vector3.hpp new file mode 100644 index 0000000..ee09eae --- /dev/null +++ b/include/vector3.hpp @@ -0,0 +1,19 @@ +#ifndef VECTOR3_HPP_ +#define VECTOR3_HPP_ + +/** + * A structure for three-dimensional points. + */ +template<typename T> +struct vector3 { + T x; /**< The x coordinate */ + T y; /**< The y coordinate */ + T z; /**< The z coordinate */ + + vector3(T _x = 0, T _y = 0, T _z = 1) + : x(_x), y(_y), z(_z) {} +}; + +using vec3 = vector3<float>; + +#endif // VECTOR3_HPP_ |