Browse Source

Fix sign error.

Felix Fontein 6 years ago
parent
commit
802ac6c3aa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/geometries/ExtrudeGeometry.js

+ 1 - 1
src/geometries/ExtrudeGeometry.js

@@ -429,7 +429,7 @@ function ExtrudeBufferGeometry( shapes, options ) {
 
 
 		}
 		}
 
 
-		bs = ( bevelSize < 0 ? 0 : - bevelSize );
+		bs = ( bevelSize < 0 ? 0 : bevelSize );
 
 
 		// Back facing vertices
 		// Back facing vertices