定向边界框与定向边界框交叉测试(c / c ++)

时间:2008-09-19 18:52:01

标签: c geometry intersection

我想要针对此测试进行优化实施。它不需要完全符合这个原型。

bool OOBBIntersectOOBB(
  float center0[3],
  float halfExtents0[3], // or some other bounding description
  float rotation0[9],    // quaternion would also be fine
  float center1[3],
  float halfExtents1[3],
  float rotation1[9]);

1 个答案:

答案 0 :(得分:3)

您可以尝试使用this Gamasutra article

中描述的方法