Browse Source

Update BufferGeometryUtils.js

Clean up.
Michael Herzog 3 years ago
parent
commit
f2294abe4f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/jsm/utils/BufferGeometryUtils.js

+ 1 - 1
examples/jsm/utils/BufferGeometryUtils.js

@@ -70,7 +70,7 @@ function computeTangents( geometry, negateSign = true ) {
 
 		for ( let i = 3; i < tangents.length; i += 4 ) {
 
-			tangents[ i ] *= -1;
+			tangents[ i ] *= - 1;
 
 		}