zeus/TVectorUnion.hpp
Phillip Stephens 271df619e5 * Make a proper Matrix4 implementation (WIP)
* Add CVector4f
* Add CRectangle (for 2D AABBs)
2015-05-06 00:05:06 -07:00

14 lines
155 B
C++

#ifndef TVECTORUNION
#define TVECTORUNION
typedef union
{
float v[4];
#if __SSE__
__m128 mVec128;
#endif
} TVectorUnion;
#endif // TVECTORUNION