From c4e849a93dcd3f215cfb0b99559250d0b686c1e5 Mon Sep 17 00:00:00 2001 From: Eugene <12kb@sibmail.com> Date: Tue, 3 Mar 2015 02:26:03 +0600 Subject: [PATCH] Update three.d.ts http://threejs.org/docs/#Reference/Extras.Helpers/BoundingBoxHelper .box property type is THREE.Box3, not the array. Seems mistake. --- threejs/three.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/threejs/three.d.ts b/threejs/three.d.ts index 78beab253e..b748444071 100644 --- a/threejs/three.d.ts +++ b/threejs/three.d.ts @@ -5613,7 +5613,7 @@ declare module THREE { constructor(object: Object3D, hex?: number); object: Object3D; - box: Box3[]; + box: Box3; update(): void; }