Explorar el Código

Fix sign error.

Felix Fontein hace 7 años
padre
commit
802ac6c3aa
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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
 

粤ICP备19079148号