From e74035e997c42285be1431fcd6a47f92423282c0 Mon Sep 17 00:00:00 2001 From: Brandon Poythress Date: Mon, 21 May 2018 08:01:13 -0400 Subject: [PATCH] working on intersection --- lib/IntersectionMath.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/IntersectionMath.js b/lib/IntersectionMath.js index 9f91cf5..3668924 100644 --- a/lib/IntersectionMath.js +++ b/lib/IntersectionMath.js @@ -34,6 +34,8 @@ function getIntersection(linePointVector, dVector, planePointVector, nVector){ + + function vector3MultiplyByConst(constant, vector){ var i = vector.elements[0] * constant; var j = vector.elements[1] * constant;