From 43feb66971b57b68b5a24cefd50580277f51da2b Mon Sep 17 00:00:00 2001 From: "Mr.doob" Date: Thu, 16 Mar 2017 12:52:27 -0700 Subject: [PATCH] FBXLoader2: Clean up. --- examples/js/loaders/FBXLoader2.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/js/loaders/FBXLoader2.js b/examples/js/loaders/FBXLoader2.js index 2fdf758af8..4a1dc8e0b6 100644 --- a/examples/js/loaders/FBXLoader2.js +++ b/examples/js/loaders/FBXLoader2.js @@ -3131,19 +3131,19 @@ * Position of the vertex. * @type {THREE.Vector3} */ - this.position = new THREE.Vector3( ); + this.position = new THREE.Vector3(); /** * Normal of the vertex * @type {THREE.Vector3} */ - this.normal = new THREE.Vector3( ); + this.normal = new THREE.Vector3(); /** * UV coordinates of the vertex. * @type {THREE.Vector2} */ - this.uv = new THREE.Vector2( ); + this.uv = new THREE.Vector2(); /** * Color of the vertex -- GitLab