79662853

Date: 2025-06-12 02:33:36
Score: 1
Natty:
Report link

Sorry about the late answer. Yes it can be done.

AABB-AABB intersections can be done by tracing a ray segment along each edge of each box against the other box (TLAS intersection testing).
Triangle-triangle intersection testing can be done by constructing 3 fake triangles orthogonal to each original triangle along each edge of the triangle (to catch the special case of the original triangles being coplanar) and then tracing a ray segment along each edge of each original triangle.

Source: https://arxiv.org/pdf/2402.14801v1

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Minthos