Files
bullet3/opencl/gpu_broadphase/host/b3SapAabb.h
2013-04-28 23:11:10 -07:00

19 lines
207 B
C

#ifndef B3_SAP_AABB_H
#define B3_SAP_AABB_H
struct b3SapAabb
{
union
{
float m_min[4];
int m_minIndices[4];
};
union
{
float m_max[4];
int m_signedMaxIndices[4];
};
};
#endif //B3_SAP_AABB_H