From 086063085fbe98acf0b4e94205f031044060a709 Mon Sep 17 00:00:00 2001 From: Patrick Cozzi Date: Tue, 27 Dec 2016 13:36:07 -0500 Subject: [PATCH] Add reference for ray/triangle intersection --- Source/Core/IntersectionTests.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Source/Core/IntersectionTests.js b/Source/Core/IntersectionTests.js index 3657b9b48ee5..e468763c9ff0 100644 --- a/Source/Core/IntersectionTests.js +++ b/Source/Core/IntersectionTests.js @@ -80,6 +80,10 @@ define([ /** * Computes the intersection of a ray and a triangle as a parametric distance along the input ray. + * + * Implements {@link https://cadxfem.org/inf/Fast%20MinimumStorage%20RayTriangle%20Intersection.pdf| + * Fast Minimum Storage Ray/Triangle Intersection} by Tomas Moller and Ben Trumbore. + * * @memberof IntersectionTests * * @param {Ray} ray The ray. @@ -170,6 +174,10 @@ define([ /** * Computes the intersection of a ray and a triangle as a Cartesian3 coordinate. + * + * Implements {@link https://cadxfem.org/inf/Fast%20MinimumStorage%20RayTriangle%20Intersection.pdf| + * Fast Minimum Storage Ray/Triangle Intersection} by Tomas Moller and Ben Trumbore. + * * @memberof IntersectionTests * * @param {Ray} ray The ray.