Matrix3: Remove superfluous copy.
@@ -198,7 +198,7 @@ class Matrix3 {
getNormalMatrix( matrix4 ) {
- return this.setFromMatrix4( matrix4 ).copy( this ).invert().transpose();
+ return this.setFromMatrix4( matrix4 ).invert().transpose();
}