Files
bullet3/opencl/gpu_broadphase/host/btSapAabb.h
2013-03-15 16:27:23 -07:00

19 lines
207 B
C

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