added b3Aabb.h header, can be shared between C++ and OpenCL

This commit is contained in:
erwin coumans 2013-08-16 09:13:14 -07:00
parent ef224370ab
commit 58eaa609e0

View File

@ -0,0 +1,19 @@
#ifndef B3_AABB_H
#define B3_AABB_H
struct b3Aabb
{
union
{
float m_min[4];
int m_minIndices[4];
};
union
{
float m_max[4];
int m_signedMaxIndices[4];
};
};
#endif //B3_AABB_H