From 355ec69c8369dbdc604c80ac28920115fae2a998 Mon Sep 17 00:00:00 2001 From: fantavlik Date: Mon, 14 Mar 2016 16:55:44 -0700 Subject: [PATCH] Update threejs/three.d.ts Intersection Insersection was missing distanceToRay and index properties from three,js r73. --- threejs/three.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/threejs/three.d.ts b/threejs/three.d.ts index c369e0d2b4..ab2cce9193 100644 --- a/threejs/three.d.ts +++ b/threejs/three.d.ts @@ -1631,7 +1631,9 @@ declare module THREE { export interface Intersection { distance: number; + distanceToRay: number; point: Vector3; + index: number; face: Face3; object: Object3D; }