Update threejs/three.d.ts Intersection

Insersection was missing distanceToRay and index properties from three,js r73.
This commit is contained in:
fantavlik
2016-03-14 16:55:44 -07:00
parent 0cd5f0a148
commit 355ec69c83
+2
View File
@@ -1631,7 +1631,9 @@ declare module THREE {
export interface Intersection {
distance: number;
distanceToRay: number;
point: Vector3;
index: number;
face: Face3;
object: Object3D;
}