1. Abstract
I introduce here a time-optimized ray-triangle intersection test, where time optimization
is obtained at the cost of using a dual representation of the triangle. The algorithm is a variant of known algorithms, which
precomputes as much values as possible. I show how this dual representation
can be obtained from the usual representation, and vice-versa, the usual representation can be recovered from the dual.
2. Triangle and ray
The triangle
is defined by three arbitrary 3D vertex points, we call them (in no particular order),
while the ray is defined by origin and direction vector (not necessarily normalized).
In what follows, vertex is called the
triangle origin, while edges from the origin are called
and . The (normalized) normal of the triangle is , which
can be obtained as:
all these vectors are represented by 3-tuples, holding their coordinates w.r.t world reference system , whose origin is .
3. Intersection point properties
Let us call to the point of intersection between the line containing the ray
and the plane containing the triangle (assuming
they are not parallel), then obviously there exist three real values such that:
note that is the distance to the point of intersection from ray origin, and are
the coordinates of with respect to the coordinate frame defined by in plane
(the pair of vectors form a basis for free vectors in plane ).
The problem of intersection computation is in fact the problem of computing , because
there is an intersection if and only if each of and are in the interval , and
. In that case is easily computed from .
Computation of can be done, as usual, by observing that vector is in thus perpendicular
to , that is . From this equality we can solve for
, we get:
Once is computed, we obtain from ().
Then we can directly compute both and as follows:
vectors and are called dual edges and are introduced in the next section.
4. Reciprocal basis
As stated, vectors form a
basis for the space of all free vectors in plane . Thus there exists
another basis for that space which is called the
reciprocal or
dual basis, and which we call
. The following equalities hold:
These equalities can be used to obtain explicit expressions for in terms
of . We know there exist four unknown real values and such that
and . By substituting these expression in ()
we arrive to a system of four equation and four unknowns, then by solving it we can write the dual basis
in terms of the original one, as follows:
value must be finite when and are not parallel neither null. By substituting () into
() it can be verified that () holds.
5. Dual representation of triangles
The intersection algorithm must precompute and
store, for each triangle, these values and vectors (which we call the
dual representation of the triangle):
note that basis is the dual basis of (because, as is normalized and perpendicular to , it holds
, and ). Tuple holds the coordinates of (as a free vector) w.r.t. basis .
For a nearly degenerated triangle ( nearly parallel to , or either or nearly null), the absolute value
of is near . Thus, computing can be used for discarding nearly degenerated triangles.
6. The algorithm
The intersection algorithm can be written by using the dual representation, in such a way that it exits as soon as possible when there is no intersection:
- Let
- If then return (no intersection: line nearly parallel to plane)
- Let
- If then return (no intersection: line intersects plane in the negative half-line)
- Let
- Let
- If or then return (no intersection: point not in triangle)
- Let
- If or then return (no intersection: point not in triangle)
- If then return (no intersection: point not in triangle)
- Return (there is an intersection)
This algorithm requires at least two and at most four
dot products. On the other hand, it requires storage for 12 real values per triangle.
7. Using homogeneous coordinates
In some case it can be efficient to use 4-tuple dot product routines implemented in hardware.
In the algorithm above, this can be done for all the dots products involved, by extending the dual
basis vectors with and as their homogeneous coordinates, then and can be
computed as:
8. Recovering original representation.
Vectors , and can be recovered from the dual representation.
Edges can be easily obtained from
by using the inverse version of (), because equalities () are
symmetric, that is:
Vertex can be computed from its coordinates (w.r.t basis ), namely:
9. See also:
- Ray-triangle intersection
by Dan Sunday (GeomAlgorithms) -- in fact this uses dual vectors, but (implicitly) computes then for every intersection.
(this page uses
MathJax)