From 924fabc272bae25af7ebe3bbaa678973580b9029 Mon Sep 17 00:00:00 2001 From: matgr1 Date: Sat, 23 Jan 2016 14:04:34 -0500 Subject: [PATCH] Update three.d.ts fixed Object3D.modelViewMatrix and Object3D.normalMatrix property definitions --- threejs/three.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/threejs/three.d.ts b/threejs/three.d.ts index 37804860e..a2323c001 100644 --- a/threejs/three.d.ts +++ b/threejs/three.d.ts @@ -1410,9 +1410,9 @@ declare module THREE { */ scale: Vector3; - modelViewMatrix: { value: Matrix4 }; + modelViewMatrix: Matrix4; - normalMatrix: { value: Matrix3 }; + normalMatrix: Matrix3; /** * When this is set, then the rotationMatrix gets calculated every frame.